summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-03 13:39:29 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-03 13:39:29 +0200
commit649f3b836518f242fc3aa1b4301d25bfc7d50049 (patch)
tree168c28c73b748af4158b7846f7ce55e09f2de69a /src/main/java/at/hannibal2/skyhanni/data
parentd9ed920bd5cf488934a18258c51c2b7501d4c71f (diff)
downloadskyhanni-649f3b836518f242fc3aa1b4301d25bfc7d50049.tar.gz
skyhanni-649f3b836518f242fc3aa1b4301d25bfc7d50049.tar.bz2
skyhanni-649f3b836518f242fc3aa1b4301d25bfc7d50049.zip
Catching error if a repo file is missing properly
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/repo/RepoUtils.kt5
1 files changed, 5 insertions, 0 deletions
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 <T> getConstant(repo: File, constant: String, gson: Gson, clazz: Class<T>?): 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),