Skip to content

Commit

Permalink
Fixed release version check exception text
Browse files Browse the repository at this point in the history
  • Loading branch information
Brov3r committed Aug 13, 2024
1 parent d9a6e6f commit a84ffd4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# AvrixLoader v1.5.2

- Fixed release version check exception text
- Fixed a UI bug when resizing the game window

# AvrixLoader v1.5.1
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/avrix/utils/ReleaseUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static void checkLatestVersion() {
System.out.println("[#] You can download it from the link: " + RELEASE_URL);
}
} catch (Exception e) {
System.out.println("[!] Failed to get information about the latest version of Avrix: " + e.getMessage());
System.out.println("[!] Failed to retrieve the latest Avrix version due to a server or network issue. Please check your internet connection or try again later.");
}
}

Expand Down

0 comments on commit a84ffd4

Please sign in to comment.