Browse Source

[공통][Bug] 네트워크 에러 시 화면 이동이 제대로 안되는 버그 수정

hyodong.min 7 years ago
parent
commit
2129235652

+ 1 - 1
app/src/main/java/kr/co/zumo/app/lifeplus/view/presenter/Presenter.java

@@ -225,7 +225,7 @@ public abstract class Presenter<M extends Model, V extends IView> implements ILi
     Log.i("APP# Presenter | onChangedConnection", "| " + this.getClass().getSimpleName() + ", isConnected:" + isConnected);
 
     if (false == isConnected) {
-      back(ScreenID.NETWORK_ERROR);
+      go(ScreenID.NETWORK_ERROR);
     }
   }