fix: /playlists returning wrong playlists

+ homepage recently played showing wrong user id items on first run
This commit is contained in:
cwilvx
2024-11-21 12:32:49 +03:00
parent 9de991dd98
commit 70c2558f92
3 changed files with 10 additions and 3 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ def get_recently_played(
entries = _entries
limit = 1
else:
entries = ScrobbleTable.get_all(0, BATCH_SIZE)
entries = ScrobbleTable.get_all(0, BATCH_SIZE, userid=userid)
max_iterations = 20
iterations = 0