fix: ignore exceptions in irc queue tick
This commit is contained in:
parent
7363252660
commit
357559ae6e
1 changed files with 1 additions and 3 deletions
|
@ -202,9 +202,7 @@ public class IRCPlugin extends ListenerAdapter {
|
|||
|
||||
bot.sendIRC().message(entry.getKey(), withIRCColors);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
} catch (Exception ignored) {}
|
||||
}
|
||||
|
||||
private void addMessageToQueue (Bot bot, String message) {
|
||||
|
|
Loading…
Reference in a new issue