Musicbox spotify playlists not there?

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:

  1. login to to your musicbox by ssh

  2. 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”)

  3. nano session_manager.py

  4. 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 = []

"

  1. 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 = []
  1. Press “ctrl+x”

  2. Press “Y”

  3. Press Return

  4. Reboot your musicbox

Best