skipping existing channels when grouping by satellites (#127)

This commit is contained in:
DYefremov
2022-12-25 14:49:02 +03:00
parent 92aa2400f6
commit 6b68740961

View File

@@ -277,7 +277,7 @@ class ImportDialog:
for s in filter(lambda srv: srv.fav_id not in skip, self._sat_services.get(sat[0], ())):
if replace_existing and s.fav_id in self._ids:
current_services[s.fav_id] = s
else:
elif s.fav_id not in self._ids:
services.append(s)
self._append((), services)