From a27c8969f1382f52bc506314e1cd60c4dd2c0d5b Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Tue, 20 Sep 2022 08:04:49 -0400 Subject: [PATCH] [33] fix anidb caching --- VERSION | 2 +- modules/anidb.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index c12f2bcf..7687a240 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.3-develop32 +1.17.3-develop33 diff --git a/modules/anidb.py b/modules/anidb.py index 21ebd851..7f3ed4c7 100644 --- a/modules/anidb.py +++ b/modules/anidb.py @@ -172,7 +172,7 @@ class AniDB: self._delay = time.time() obj = AniDBObj(self, anidb_id, anidb_dict) if self.config.Cache and not ignore_cache: - self.config.Cache.update_mdb(expired, anidb_id, obj, self.expiration) + self.config.Cache.update_anidb(expired, anidb_id, obj, self.expiration) return obj def get_anidb_ids(self, method, data):