Skip to content

Commit

Permalink
fix crash in dismissLoadingDialog #279
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyScherzinger committed Sep 20, 2016
1 parent 6c1a30c commit 41fa068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/owncloud/android/ui/activity/FileActivity.java
Expand Up @@ -482,7 +482,7 @@ public void dismissLoadingDialog() {
if (frag != null) {
Log_OC.d(TAG, "dismiss loading dialog");
LoadingDialog loading = (LoadingDialog) frag;
loading.dismiss();
loading.dismissAllowingStateLoss();
}
}

Expand Down

0 comments on commit 41fa068

Please sign in to comment.