fix crash in LoginActivity
This commit is contained in:
parent
44b79e31d4
commit
9e64bd1307
1 changed files with 3 additions and 2 deletions
|
@ -215,11 +215,12 @@ class LoginActivity : AppCompatActivity() {
|
||||||
val code = uri.getQueryParameter("code")
|
val code = uri.getQueryParameter("code")
|
||||||
val error = uri.getQueryParameter("error")
|
val error = uri.getQueryParameter("error")
|
||||||
|
|
||||||
if (code != null) {
|
domain = preferences.getString(DOMAIN, "")
|
||||||
|
|
||||||
|
if (code != null && domain.isNotEmpty()) {
|
||||||
/* During the redirect roundtrip this Activity usually dies, which wipes out the
|
/* During the redirect roundtrip this Activity usually dies, which wipes out the
|
||||||
* instance variables, so they have to be recovered from where they were saved in
|
* instance variables, so they have to be recovered from where they were saved in
|
||||||
* SharedPreferences. */
|
* SharedPreferences. */
|
||||||
domain = preferences.getString(DOMAIN, null)
|
|
||||||
clientId = preferences.getString(CLIENT_ID, null)
|
clientId = preferences.getString(CLIENT_ID, null)
|
||||||
clientSecret = preferences.getString(CLIENT_SECRET, null)
|
clientSecret = preferences.getString(CLIENT_SECRET, null)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue