Skip to content

Commit

Permalink
ReVancedUpdater: Fix compareAppVersion()
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Ledda <leonardoledda@gmail.com>
  • Loading branch information
LeddaZ committed Mar 28, 2024
1 parent 513c371 commit b511e55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ class MainActivity : AppCompatActivity() {
updateStatusTextView.text = getString(R.string.update_available)
button.isEnabled = true
} else if (installedVersion.compareTo(latestVersion) == 0) {
if (packageName != MICROG_PACKAGE) {
if (packageName != MICROG_PACKAGE && packageName != UPDATER_PACKAGE) {
var latestHash = getLatestReVancedHash()
if (packageName == MUSIC_PACKAGE)
latestHash = getLatestReVancedMusicHash()
Expand Down

0 comments on commit b511e55

Please sign in to comment.