From 93a56487f0bb2b7d5dcfc816808386ef34a8986e Mon Sep 17 00:00:00 2001 From: Lorenz Date: Thu, 8 Sep 2022 11:53:51 +0200 Subject: moved api and debug into dev config --- src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/data/repo') diff --git a/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt b/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt index a9fbcb04a..64ee938d5 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt @@ -21,7 +21,7 @@ class RepoManager(private val configLocation: File) { fun loadRepoInformation() { atomicShouldManuallyReload.set(true) - if (SkyHanniMod.feature.apiData.repoAutoUpdate) { + if (SkyHanniMod.feature.dev.repoAutoUpdate) { fetchRepository().thenRun(this::reloadRepository) } else { reloadRepository() -- cgit