fix cache clear

This commit is contained in:
jxxghp
2025-08-22 07:22:23 +08:00
parent 41cd1ccda1
commit 499bdf9b48
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ class TmdbCache(metaclass=WeakSingleton):
清空所有TMDB缓存
"""
with lock:
self._cache.clear(region=self.region)
self._cache.clear()
@staticmethod
def __get_key(meta: MetaBase) -> str: