1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

some network layer changes (ssl errors)

git-svn-id: https://only.mawhrin.net/repos/FBReaderJ/trunk@1225 6a642e6f-84f6-412e-ac94-c4a38d5a04b0
This commit is contained in:
Vasiliy Bout 2010-04-14 09:22:56 +00:00
parent c3d65ec655
commit 2f5d246b49
4 changed files with 27 additions and 1 deletions

View file

@ -88,12 +88,14 @@ class AuthenticationDialog {
if (err != null) {
mgr.logOut();
DialogHandler.this.sendMessage(DialogHandler.this.obtainMessage(-1, err));
return;
}
if (mgr.needsInitialization()) {
err = mgr.initialize();
if (err != null) {
mgr.logOut();
DialogHandler.this.sendMessage(DialogHandler.this.obtainMessage(-1, err));
return;
}
}
}