Skip to content

Commit 712c455

Browse files
committed
[smarcet] - #14734
* fixed windows bad token
1 parent 8072db3 commit 712c455

File tree

1 file changed

+6
-1
lines changed
  • app/src/main/java/org/openstack/android/summit/modules/main/user_interface

1 file changed

+6
-1
lines changed

app/src/main/java/org/openstack/android/summit/modules/main/user_interface/MainPresenter.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,12 @@ private void checkDeepLinks() {
668668
launchSummitListDataLoadingActivity();
669669
}
670670
);
671-
if(dialog != null) dialog.show();
671+
672+
if(!(ctx).isFinishing() && dialog != null)
673+
{
674+
dialog.show();
675+
}
676+
672677
return;
673678
}
674679
);

0 commit comments

Comments
 (0)