Hi Robert,
had the same problem, did TheRealMolens trick and now it works like charm.
So if this is still a problem for you here are the steps:
-
login to to your musicbox by ssh
-
cd /usr/local/lib/python2.7/dist-packages/mopidy_spotify/
(if it’s not there on your musicbox you will find it by using “find . -name session_manager.py”) -
nano session_manager.py
-
scroll down to
" def refresh_playlists(self):
""“Refresh the playlists in the backend with data from Spotify”""
if not self._initial_data_receive_completed:
logger.debug(‘Still getting data; skipped refresh of playlists’)
return
playlists = []
folders = []
"
- make a “#” in the beginning of the line of the “return” that it looks like that:
def refresh_playlists(self):
""“Refresh the playlists in the backend with data from Spotify”""
if not self._initial_data_receive_completed:
logger.debug(‘Still getting data; skipped refresh of playlists’)
return
playlists = []
folders = []
-
Press “ctrl+x”
-
Press “Y”
-
Press Return
-
Reboot your musicbox
Best