mirror of
https://github.com/bytedream/untisbot-discord.git
synced 2025-05-09 20:25:09 +02:00
Created unexpected exception catcher in timetable listener
This commit is contained in:
parent
74274fa2d7
commit
992accf51e
@ -719,6 +719,13 @@ public class DiscordCommandListener extends ListenerAdapter {
|
|||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
logger.info("Running main through IOException", e);
|
logger.info("Running main through IOException", e);
|
||||||
main();
|
main();
|
||||||
|
} catch (Exception e) {
|
||||||
|
try {
|
||||||
|
logger.info("Try to run main through unexpected exception", e);
|
||||||
|
main();
|
||||||
|
} catch (Exception ex) {
|
||||||
|
logger.warn("Couldn't run main through unexpected exception", ex);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, 0, data.getSleepTime());
|
}, 0, data.getSleepTime());
|
||||||
@ -926,14 +933,15 @@ public class DiscordCommandListener extends ListenerAdapter {
|
|||||||
statsDataConnector.add(guildId);
|
statsDataConnector.add(guildId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Data.Guild data = guildDataConnector.get(guildId);
|
||||||
|
try {
|
||||||
|
allUntisSessions.put(guildId, Session.login(data.getUsername(), data.getPassword(), data.getServer(), data.getSchool()));
|
||||||
|
} catch (IOException e) {
|
||||||
|
logger.error("Error for guild " + guild.getName() + " (" + guildId + ") while setting up untis session", e);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (guildDataConnector.get(guildId).isCheckActive()) {
|
if (guildDataConnector.get(guildId).isCheckActive()) {
|
||||||
Data.Guild data = guildDataConnector.get(guildId);
|
runTimetableChecker(guild);
|
||||||
try {
|
|
||||||
allUntisSessions.put(guildId, Session.login(data.getUsername(), data.getPassword(), data.getServer(), data.getSchool()));
|
|
||||||
runTimetableChecker(guild);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logger.error("Error for guild " + guild.getName() + " (" + guildId + ") while setting up untis session", e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allGuilds.add(guildId);
|
allGuilds.add(guildId);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user