Skip to content

Commit

Permalink
fix: Invalid updater URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Ushie committed Jan 20, 2025
1 parent ec08de4 commit 4d01c52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ class HomeViewModel(

private fun checkForUpdate() {
screenModelScope.launch {
release = repo.getLatestRelease("revenge/revenge-manager").dataOrNull
release = repo.getLatestRelease("revenge-mod/revenge-manager").dataOrNull
release?.let {
showUpdateDialog = it.tagName.toInt() > BuildConfig.VERSION_CODE
}
repo.getLatestRelease("revenge/revenge-xposed").ifSuccessful {
repo.getLatestRelease("revenge-mod/revenge-xposed").ifSuccessful {
if (prefs.moduleVersion != it.tagName) {
prefs.moduleVersion = it.tagName
val module = File(cacheDir, "xposed.apk")
Expand Down

0 comments on commit 4d01c52

Please # to comment.