소스 검색

[가입][Bug] 임시 값 제거 - 인증 번호 무조건 통과 임시 로직 제거

hyodong.min 7 년 전
부모
커밋
a10247a941
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      app/src/main/java/kr/co/zumo/app/lifeplus/view/custom/auth/MobileAuthPresenter.java

+ 6 - 6
app/src/main/java/kr/co/zumo/app/lifeplus/view/custom/auth/MobileAuthPresenter.java

@@ -355,22 +355,22 @@ public class MobileAuthPresenter implements IMobileAuthContract.Presenter {
             }
             else {
               // 실패
-//              countFailWithPopup();
+              countFailWithPopup();
 
               // fixme 일단 무조건 성공
-              LifeplusAPIBean bean = new LifeplusAPIBean(LifeplusAPIBean.RETURN_SUCCESS, "");
-              doSomeWhenConfirmSuccess(bean);
+//              LifeplusAPIBean bean = new LifeplusAPIBean(LifeplusAPIBean.RETURN_SUCCESS, "");
+//              doSomeWhenConfirmSuccess(bean);
             }
           }
 
           @Override
           public void onApiError(String errorMessage) {
             // 실패
-//              countFailWithPopup();
+              countFailWithPopup();
 
             // fixme 일단 무조건 성공
-            LifeplusAPIBean bean = new LifeplusAPIBean(LifeplusAPIBean.RETURN_SUCCESS, "");
-            doSomeWhenConfirmSuccess(bean);
+//            LifeplusAPIBean bean = new LifeplusAPIBean(LifeplusAPIBean.RETURN_SUCCESS, "");
+//            doSomeWhenConfirmSuccess(bean);
           }
         })
       );