From c17d45538044465abad60a36137f1a0fb7b805c7 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Sun, 6 Dec 2020 12:43:35 -0500 Subject: [PATCH] test --- fHDHR/origin/origin_epg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fHDHR/origin/origin_epg.py b/fHDHR/origin/origin_epg.py index 1012dd4..bdc091e 100644 --- a/fHDHR/origin/origin_epg.py +++ b/fHDHR/origin/origin_epg.py @@ -40,7 +40,7 @@ class OriginEPG(): def get_cached_item(self, channel_id, cache_key, url): cache_key = datetime.datetime.today().replace(hour=cache_key).timestamp() - cache_key = channel_id + "_" + cache_key + cache_key = str(channel_id) + "_" + str(cache_key) cacheitem = self.fhdhr.db.get_cacheitem_value(str(cache_key), "offline_cache", "origin") if cacheitem: self.fhdhr.logger.info('FROM CACHE: ' + str(cache_key))