Skip to content

Commit 59a1ef3

Browse files
author
维术
committed
[Exposed-UI] fix bad token exception on meizu.
1 parent 035de99 commit 59a1ef3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

VirtualApp/app/src/main/java/io/virtualapp/home/HomeActivity.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,9 @@ private void alertForMeizu() {
565565
.setPositiveButton(android.R.string.yes, (dialog, which) -> {
566566
})
567567
.create();
568-
alertDialog.show();
568+
try {
569+
alertDialog.show();
570+
} catch (Throwable ignored) {}
569571
}, 2000);
570572
}
571573
}

0 commit comments

Comments
 (0)