Commit 9095f3bf authored by jyx's avatar jyx

高额任务防止多次调用

parent 357a9e9c
...@@ -265,7 +265,11 @@ open class MyPresenter : BasePresenter<MyView>() { ...@@ -265,7 +265,11 @@ open class MyPresenter : BasePresenter<MyView>() {
override fun onNext(baseResponse: BaseResponse<Any>) { override fun onNext(baseResponse: BaseResponse<Any>) {
if (isLinkView) return if (isLinkView) return
when (baseResponse.status) { when (baseResponse.status) {
200 -> getAutoUserHallBaseMsg() 200 -> {
if (!TextUtils.equals(value, "3")) {
getAutoUserHallBaseMsg()
}
}
} }
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment