diff --git a/mopidy_spotify/web.py b/mopidy_spotify/web.py index d6e99cd8..23da1d0d 100644 --- a/mopidy_spotify/web.py +++ b/mopidy_spotify/web.py @@ -409,7 +409,7 @@ def __init__(self, *, client_id, client_secret, proxy_config): def get_one(self, path, *args, **kwargs): _trace(f"Fetching page {path!r}") - result = self.get(path, cache=self._cache, *args, **kwargs) + result = self.get(path, self._cache, *args, **kwargs) result.increase_expiry(self._extra_expiry) return result