Extend cache TTL now external caches are supported

This commit is contained in:
Danielle McLean 2024-05-14 16:07:43 +10:00
parent 4a2ac29d30
commit 8ad255856e
Signed by: 00dani
GPG key ID: 6854781A0488421C

View file

@ -6,7 +6,7 @@ from ..async_tools import run_background_task
from ..cache import Cache, make_cache
from .types import CurrentSongResponse, MpdStateHandler
CACHE_TTL = 60 * 10 # ten minutes
CACHE_TTL = 60 * 60 # seconds = 1 hour
class ArtCacheEntry(TypedDict):