We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9e73eb commit ad95833Copy full SHA for ad95833
usr/lib/linuxmint/mintUpdate/checkAPT.py
@@ -47,8 +47,9 @@ def find_changes(self):
47
48
# Package updates
49
for pkg in changes:
50
- if (pkg.is_installed and pkg.marked_upgrade and pkg.candidate.version != pkg.installed.version):
51
- self.add_update(pkg)
+ if (pkg.is_installed and pkg.candidate.version != pkg.installed.version):
+ if (pkg.marked_upgrade or pkg.marked_downgrade):
52
+ self.add_update(pkg)
53
54
# Kernel updates
55
lts_meta_name = "linux" + CONFIGURED_KERNEL_TYPE
0 commit comments