mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
Merge pull request #306 from Zillode/fix-illegal-dismiss
Clear dialog reference when dismissed (fixes #305).
This commit is contained in:
commit
ee0ff1c5ca
1 changed files with 1 additions and 0 deletions
|
@ -55,6 +55,7 @@ public class MainActivity extends SyncthingActivity
|
|||
if (currentState == SyncthingService.State.DISABLED) {
|
||||
if (mLoadingDialog != null) {
|
||||
mLoadingDialog.dismiss();
|
||||
mLoadingDialog = null;
|
||||
}
|
||||
mDisabledDialog = SyncthingService.showDisabledDialog(this);
|
||||
} else if (mLoadingDialog == null) {
|
||||
|
|
Loading…
Reference in a new issue