fix:【光环助手】畅玩问题自动回复问题 https://jira.shanqu.cc/browse/GHZS-4773

This commit is contained in:
曾祥俊
2024-02-27 13:49:11 +08:00
parent 0ca5211caf
commit f8f77b1f4d

View File

@ -33,6 +33,8 @@ import io.reactivex.schedulers.Schedulers
import kotlinx.parcelize.Parcelize
import okhttp3.ResponseBody
import org.json.JSONArray
import org.json.JSONObject
import retrofit2.HttpException
class VFeedbackDialogFragment : BaseDialogFragment() {
@ -242,6 +244,15 @@ class VFeedbackDialogFragment : BaseDialogFragment() {
super.onResponse(response)
ToastUtils.showToast("感谢您的反馈信息,我们将尽快处理~")
}
override fun onFailure(e: HttpException?) {
e?.response()?.errorBody()?.let {
val content = JSONObject(it.string())
if (content.getInt("code") == 403052) {
ToastUtils.showToast("您已经提交过反馈信息,我们将尽快处理~")
}
}
}
})
}