diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/github/daneren2005/dsub/view/ErrorDialog.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/github/daneren2005/dsub/view/ErrorDialog.java b/src/github/daneren2005/dsub/view/ErrorDialog.java index e9f25a2d..55f230a4 100644 --- a/src/github/daneren2005/dsub/view/ErrorDialog.java +++ b/src/github/daneren2005/dsub/view/ErrorDialog.java @@ -59,7 +59,11 @@ public class ErrorDialog { } }); - builder.create().show(); + try { + builder.create().show(); + } catch(Exception e) { + // Don't care, just means no activity to attach to + } } private void restart(Activity context) { |