From 2538073a3568ee58591a637445640299a6dde1a8 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 24 Sep 2022 19:51:13 +0200 Subject: changed hannibal2 name --- src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/data') 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 e12cbc637..2dc65f358 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/repo/RepoManager.kt @@ -149,14 +149,14 @@ class RepoManager(private val configLocation: File) { } private fun getCommitApiUrl(): String { - val repoUser = "hannibal00212" + val repoUser = "hannibal002" val repoName = "SkyHanni-REPO" val repoBranch = "main" return String.format("https://api.github.com/repos/%s/%s/commits/%s", repoUser, repoName, repoBranch) } private fun getDownloadUrl(commitId: String?): String { - val repoUser = "hannibal00212" + val repoUser = "hannibal002" val repoName = "SkyHanni-REPO" return String.format("https://github.com/%s/%s/archive/%s.zip", repoUser, repoName, commitId) } -- cgit