diff --git a/app/appstate.py b/app/appstate.py index b2ee763..145203d 100644 --- a/app/appstate.py +++ b/app/appstate.py @@ -593,10 +593,10 @@ class Source: return sorted(ext) @property - def is_outdated(self) -> bool: + def is_outdated_in_git(self) -> bool: if self.upstream_version is None: return False - msys_version = extract_upstream_version(self.version) + msys_version = extract_upstream_version(self.git_version) return version_is_newer_than(self.upstream_version, msys_version) @property diff --git a/app/templates/base.html b/app/templates/base.html index 43cc906..000d099 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -25,7 +25,7 @@
- {% if s.is_outdated %} + {% if s.is_outdated_in_git %}