Skip to content

Commit

Permalink
Hotfix - infinite update loop
Browse files Browse the repository at this point in the history
  • Loading branch information
CoocooFroggy committed Mar 24, 2022
1 parent 5d7fba8 commit e739c65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/Main.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
public class Main {
public static void main(String[] args) {
MainMenu.futureRestoreGUIVersion = "1.97.1";
MainMenu.futureRestoreGUIVersion = "1.97.2";
MainMenu.main();
/*
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/MainMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -1217,7 +1217,7 @@ boolean previewCommand(ArrayList<String> allArgs) {
static void alertIfNewerFRGUIAvailable(MainMenu mainMenuInstance, String currentFRGUIVersion) {
new Thread(() -> {
try {
String content = getRequestUrl("https://api.github.com/repos/CoocooFroggy/FutureRestore-GUI/releases");
String content = getRequestUrl("https://api.github.com/repos/CoocooFroggy/FutureRestore-GUI/releases/latest");

Gson gson = new Gson();
ArrayList<Map<String, Object>> result = gson.fromJson(content, ArrayList.class);
Expand Down

0 comments on commit e739c65

Please sign in to comment.