Added error logging

This commit is contained in:
M66B 2022-08-15 08:50:13 +02:00
parent 7cc996ae58
commit b81dda2b7f
1 changed files with 1 additions and 0 deletions

View File

@ -158,6 +158,7 @@ public class GmailState {
long acquired = jobject.getLong("acquired");
return new GmailState(token, acquired);
} catch (JSONException ex) {
Log.e(ex);
return new GmailState(password, new Date().getTime());
}
}