diff options
| -rw-r--r-- | src/main/java/io/github/moulberry/notenoughupdates/NEUManager.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/NEUManager.java b/src/main/java/io/github/moulberry/notenoughupdates/NEUManager.java index 8e26414c..daf67585 100644 --- a/src/main/java/io/github/moulberry/notenoughupdates/NEUManager.java +++ b/src/main/java/io/github/moulberry/notenoughupdates/NEUManager.java @@ -284,7 +284,7 @@ public class NEUManager { * downloading of new/updated files. This then calls the "loadItem" method for every item in the local repository. */ public void loadItemInformation() { - if (!NotEnoughUpdates.INSTANCE.config.hidden.autoupdate) + if (NotEnoughUpdates.INSTANCE.config.hidden.autoupdate) fetchRepository().thenAccept(i -> { reloadRepository(); }); |
