Skip to content

Commit

Permalink
Fix startup error
Browse files Browse the repository at this point in the history
  • Loading branch information
dima-dencep committed Jun 3, 2023
1 parent 16eacf2 commit 6324a42
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -32,6 +32,9 @@ public static void sendMessage(Text title, Text description) {
return;
}

client.getToastManager().add(SystemToast.create(client, SystemToast.Type.TUTORIAL_HINT, title, description));
try {
client.getToastManager().add(SystemToast.create(client, SystemToast.Type.TUTORIAL_HINT, title, description));
} catch (Throwable ignored) {
}
}
}

0 comments on commit 6324a42

Please sign in to comment.