Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
75bc8c56
Commit
75bc8c56
authored
Apr 22, 2020
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ネットワークOFF状態で、アプリロック解除画面でパスワード入力するとアラート表示され、一覧に戻れない
parent
4476664f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/LoginActivity.java
+7
-6
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/LoginActivity.java
View file @
75bc8c56
...
...
@@ -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
();
}
});
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment