Skip to content

Commit

Permalink
allow downgrading geode
Browse files Browse the repository at this point in the history
  • Loading branch information
qimiko committed Jan 29, 2024
1 parent c4c41e3 commit c8e3d74
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class ReleaseManager private constructor(
val geodeFile = getGeodeOutputPath()

// check if an update is needed
if (latestVersion <= currentVersion && geodeFile.exists()) {
if (latestVersion == currentVersion && geodeFile.exists()) {
_uiState.value = ReleaseManagerState.Finished()
return
}
Expand Down

0 comments on commit c8e3d74

Please sign in to comment.