mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-24 02:44:17 +00:00
Change is_older_than_installed so that it no longer detects the current update as a new one (#639)
This commit is contained in:
parent
04e56a2f48
commit
c81ad0ad41
1 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ impl Release {
|
|||
//
|
||||
// https://datatracker.ietf.org/doc/html/rfc3339#section-5.1
|
||||
let current_version = CURRENT_VERSION.lock();
|
||||
self.published_at.as_str() < current_version.as_str()
|
||||
self.published_at.as_str() <= current_version.as_str()
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -193,7 +193,7 @@ pub fn perform_version_check() {
|
|||
drop(current_version); // Explicitly unlock, since we also acquire a lock in is_older_than_installed()
|
||||
if release_to_apply.as_ref().unwrap().is_older_than_installed() {
|
||||
release_to_apply = Err(anyhow!(
|
||||
"Update is older than the current installed version.",
|
||||
"Github version is not newer than the current installed version.",
|
||||
))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue