diff --git a/plexapi/myplex.py b/plexapi/myplex.py index 04318dfdf..5341469af 100644 --- a/plexapi/myplex.py +++ b/plexapi/myplex.py @@ -217,7 +217,7 @@ def sonos_speakers(self): return [] t = time.time() - if t - self._sonos_cache_timestamp > 60: + if t - self._sonos_cache_timestamp > 5: self._sonos_cache_timestamp = t data = self.query('https://sonos.plex.tv/resources') self._sonos_cache = [PlexSonosClient(self, elem) for elem in data]