blastbeng / spotisub

Spotify to subsonic Playlist Generator and Importer
MIT License
105 stars 6 forks source link

Missing followed playlists #76

Closed noxPHX closed 1 week ago

noxPHX commented 2 weeks ago

Is there an existing issue for this?

Current Behaviour

My followed playlists on Spotify are not detected nor imported

Steps To Reproduce

I follow various playlists on spotify, after running "import all" multiple times, the playlists I follow do not show up on spotisub and are not created on my navidrome. All the others (saved tracks, artists, ...) seems present.

Expected behaviour

According to the README, the playlists I follow should be detected and imported on spotisub.

Spotisub Version

0.3.3 (Docker)

Python Version

3.10.15 (Inside the container)

Example Code

Here is an excerpt of my compose file:
  spotisub:
    image: blastbeng/spotisub:v0.3.3
    container_name: spotisub
    restart: unless-stopped
    environment:
      - SPOTIPY_CLIENT_ID=<redacted>
      - SPOTIPY_CLIENT_SECRET=<redacted>
      - SPOTIPY_REDIRECT_URI=http://127.0.0.1:8080/
      - SUBSONIC_API_HOST=<redacted>
      - SUBSONIC_API_PORT=443
      - SUBSONIC_API_USER=<redacted>
      - SUBSONIC_API_PASS=<redacted>
      - SUBSONIC_API_BASE_URL=/
      - PLAYLIST_PREFIX=Spotify -
      - ITEMS_PER_PLAYLIST=50
      - NUM_USER_PLAYLISTS=3
    volumes:
      - <redacted>:/home/user/spotisub/cache
    healthcheck:
      test: curl -s http://127.0.0.1:5183/api/v1/utils/healthcheck | grep -q 'Ok!' || exit 1
      interval: 30s
      retries: 20
      start_period: 30s

Relevant log output

No logs, I tried to get into the code but I could not manage to output anything.

Code of Conduct

noxPHX commented 1 week ago

Hello, For the record, the playlists must be "public" on your profile to be detected. This is done by "Adding to the profile" the playlists. Closing as solved.