mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2026-06-26 06:19:48 +02:00
fix EPG filtering when missing values
This commit is contained in:
@@ -542,7 +542,7 @@ class EpgTool(Gtk.Box):
|
||||
return next((s for s in model.get(itr,
|
||||
Column.EPG_SERVICE,
|
||||
Column.EPG_TITLE,
|
||||
Column.EPG_DESC) if txt in s.upper()), False)
|
||||
Column.EPG_DESC) if s and txt in s.upper()), False)
|
||||
|
||||
def on_filter_toggled(self, app, value):
|
||||
if self._app.page is Page.EPG:
|
||||
|
||||
Reference in New Issue
Block a user