Commit 75bc8c56 by Kim Jinsung

ネットワークOFF状態で、アプリロック解除画面でパスワード入力するとアラート表示され、一覧に戻れない

parent 4476664f
......@@ -308,6 +308,12 @@ public class LoginActivity extends ABVLoginActivity {
if (validate()) {
boolean agree_macInfor;
//アプリロック状態でインターネット非接続時に正常なパスワード入力しても解除できない問題対応
if (oldMemberInfoDto != null && oldMemberInfoDto.loginStatus == LoginStatus.LimitLogin.statusCode()) {
// アプリロックの場合サーバ認証せずにログイン
offlineLogin();
return;
}
agree_macInfor = getUserPref(UserPrefKey.AGREE_MACINFO, false);
// Macアドレスに既に同意している場合、ログイン
int deviceIdType = Constant.DeviceIdType.MAC_ADDRESS;
......@@ -392,12 +398,7 @@ public class LoginActivity extends ABVLoginActivity {
CommonExecutor.execute(new Runnable() {
@Override
public void run() {
if (oldMemberInfoDto != null && oldMemberInfoDto.loginStatus == LoginStatus.LimitLogin.statusCode()) {
// アプリロックの場合サーバ認証せずにログイン
offlineLogin();
} else {
fcmRegister();
}
fcmRegister();
}
});
}
......
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