[fix][appimage][flatpak] notifying ignored updates to the tray

This commit is contained in:
Vinícius Moreira
2020-05-19 10:52:18 -03:00
parent 21c5147656
commit 14a433b13e
2 changed files with 2 additions and 2 deletions

View File

@@ -543,7 +543,7 @@ class AppImageManager(SoftwareManager):
updates = []
if res.installed:
for app in res.installed:
if app.update:
if app.update and not app.is_update_ignored():
updates.append(PackageUpdate(pkg_id=app.name, pkg_type='AppImage', version=app.latest_version, name=app.name))
return updates