Skip to content

Commit

Permalink
fix #1380
Browse files Browse the repository at this point in the history
fix #1373
fix #1404
  • Loading branch information
jxxghp committed Feb 18, 2024
1 parent 57d9e4a commit 59acda5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/jellyfin/jellyfin.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_jellyfin_folders(self) -> List[dict]:
"""
if not self._host or not self._apikey:
return []
req_url = "%Library/SelectableMediaFolders?api_key=%s" % (self._host, self._apikey)
req_url = "%sLibrary/SelectableMediaFolders?api_key=%s" % (self._host, self._apikey)
try:
res = RequestUtils().get_res(req_url)
if res:
Expand Down

0 comments on commit 59acda5

Please sign in to comment.