This commit is contained in:
deathbybandaid 2020-11-27 17:19:14 -05:00
parent 47d2dd1ab9
commit 27f0257823

View File

@ -20,8 +20,8 @@ class Channels():
self.list_update_time = None self.list_update_time = None
self.get_db_channels() self.get_db_channels()
neverscanned = self.fhdhr.db.get_fhdhr_value("channels", "scanned_time") haseverscanned = self.fhdhr.db.get_fhdhr_value("channels", "scanned_time")
if (self.fhdhr.config.dict["fhdhr"]["chanscan_on_start"] or neverscanned): if (self.fhdhr.config.dict["fhdhr"]["chanscan_on_start"] or haseverscanned):
self.get_channels() self.get_channels()
def get_channel_obj(self, keyfind, valfind): def get_channel_obj(self, keyfind, valfind):