mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
Merge pull request #284 from Zillode/fix-invalid-token
Maintain&check reference to GUI before changing it
This commit is contained in:
commit
a3d93a69ca
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ public class MainActivity extends SyncthingActivity
|
|||
@Override
|
||||
@SuppressLint("InflateParams")
|
||||
public void onApiChange(SyncthingService.State currentState) {
|
||||
if (currentState != SyncthingService.State.ACTIVE && !isFinishing()) {
|
||||
if (currentState != SyncthingService.State.ACTIVE && !isFinishing() && !isDestroyed()) {
|
||||
if (currentState == SyncthingService.State.DISABLED) {
|
||||
if (mLoadingDialog != null) {
|
||||
mLoadingDialog.dismiss();
|
||||
|
|
Loading…
Reference in a new issue