mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Catch AssertionError
This commit is contained in:
parent
7aa05426b6
commit
60e6f8c162
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ public class GeyserConnector {
|
|||
if (build != null) {
|
||||
buildNumber = Integer.parseInt(build);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
} catch (Throwable e) {
|
||||
logger.error("Failed to read git.properties", e);
|
||||
}
|
||||
newsHandler = new NewsHandler(branch, buildNumber);
|
||||
|
|
Loading…
Reference in a new issue