From 649f3b836518f242fc3aa1b4301d25bfc7d50049 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 3 Aug 2023 13:39:29 +0200 Subject: Catching error if a repo file is missing properly --- src/main/java/at/hannibal2/skyhanni/data/repo/RepoUtils.kt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/data') diff --git a/src/main/java/at/hannibal2/skyhanni/data/repo/RepoUtils.kt b/src/main/java/at/hannibal2/skyhanni/data/repo/RepoUtils.kt index 9719c70ff..db4735aeb 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/repo/RepoUtils.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/repo/RepoUtils.kt @@ -1,5 +1,6 @@ package at.hannibal2.skyhanni.data.repo +import at.hannibal2.skyhanni.test.command.CopyErrorCommand import com.google.gson.Gson import java.io.* import java.nio.charset.StandardCharsets @@ -79,6 +80,10 @@ object RepoUtils { fun getConstant(repo: File, constant: String, gson: Gson, clazz: Class?): T? { if (repo.exists()) { val jsonFile = File(repo, "constants/$constant.json") + if (!jsonFile.isFile) { + CopyErrorCommand.logError(Error("File '$jsonFile' not found!"), "File in repo missing! ($jsonFile). Try §e/shupdaterepo") + return null + } BufferedReader( InputStreamReader( FileInputStream(jsonFile), -- cgit