From 2eaeee1b1b19c569ffe4ade9255b8e32a5166a0d Mon Sep 17 00:00:00 2001 From: tabreturn Date: Sat, 21 Mar 2026 18:36:00 +1100 Subject: [PATCH] Fix "not installed" filter bug --- PortMaster/pylibs/harbourmaster/harbour.py | 1 + 1 file changed, 1 insertion(+) diff --git a/PortMaster/pylibs/harbourmaster/harbour.py b/PortMaster/pylibs/harbourmaster/harbour.py index 2965a3f..7d58387 100644 --- a/PortMaster/pylibs/harbourmaster/harbour.py +++ b/PortMaster/pylibs/harbourmaster/harbour.py @@ -1368,6 +1368,7 @@ def list_ports_names_new(self, filters=[], sort_by='alphabetical', reverse=False if 'installed' not in filters: tmp_ports.difference_update(self._source_port_attrs.get('installed', set())) + tmp_ports.difference_update(self._installed_port_attrs.get('installed', set())) else: # sigh... tmp_ports = set()