From 6b68740961f45ac74e70e70cd671807b3a4018cf Mon Sep 17 00:00:00 2001 From: DYefremov Date: Sun, 25 Dec 2022 14:49:02 +0300 Subject: [PATCH] skipping existing channels when grouping by satellites (#127) --- app/ui/imports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/imports.py b/app/ui/imports.py index b760ca98..7b26a75b 100644 --- a/app/ui/imports.py +++ b/app/ui/imports.py @@ -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)