From ec66c82198fe2d61d699d553c1254f08b43fcc65 Mon Sep 17 00:00:00 2001 From: nea Date: Sat, 10 Sep 2022 03:48:03 +0200 Subject: Move Eventhandling around. I still want to use fabric still "array backed" events, but these here are just a bit easier to use from kotlin. --- src/main/kotlin/moe/nea/notenoughupdates/repo/RepoDownloadManager.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/kotlin/moe/nea/notenoughupdates/repo') diff --git a/src/main/kotlin/moe/nea/notenoughupdates/repo/RepoDownloadManager.kt b/src/main/kotlin/moe/nea/notenoughupdates/repo/RepoDownloadManager.kt index c354392..2d700c1 100644 --- a/src/main/kotlin/moe/nea/notenoughupdates/repo/RepoDownloadManager.kt +++ b/src/main/kotlin/moe/nea/notenoughupdates/repo/RepoDownloadManager.kt @@ -76,7 +76,7 @@ object RepoDownloadManager { return@withContext false } val currentSha = loadSavedVersionHash() - if (latestSha != currentSha) { + if (latestSha != currentSha || force) { val requestUrl = "https://github.com/${RepoManager.config.user}/${RepoManager.config.repo}/archive/$latestSha.zip" logger.info("Planning to upgrade repository from $currentSha to $latestSha from $requestUrl") val zipFile = downloadGithubArchive(requestUrl) -- cgit