Unverified Commit 0c9fb9cf authored by Rafael Kellermann Streit's avatar Rafael Kellermann Streit Committed by GitHub

Merge pull request #1017 from RocketChat/fix/blank-screen

[FIX] Blank screen.
parents 82db7cd0 4aad86b7
...@@ -25,7 +25,7 @@ class AuthenticationPresenter @Inject constructor( ...@@ -25,7 +25,7 @@ class AuthenticationPresenter @Inject constructor(
localRepository.save(LocalRepository.CURRENT_USERNAME_KEY, account.userName) localRepository.save(LocalRepository.CURRENT_USERNAME_KEY, account.userName)
} }
if (newServer || currentServer == null || serverToken == null || settings == null) { if (newServer || currentServer == null || serverToken == null || settings == null || account?.userName == null) {
callback(false) callback(false)
} else { } else {
callback(true) callback(true)
......
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