Skip to content

Commit

Permalink
v5.8.x Fix bug with [Emby library subfolders](https://github.com/terr…
Browse files Browse the repository at this point in the history
  • Loading branch information
terrelsa13 committed Sep 2, 2024
1 parent dcd8c72 commit fd5d33a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mumc_modules/mumc_get_media.py
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ def init_getMedia(the_dict):
parent_id='lib_id'
else:
if (('subfolder_id' in lib_info) and (not (lib_info['subfolder_id'] == None))):
library_id='subfolder_id'
library_id='lib_id'
parent_id='lib_id'
else:
library_id='lib_id'
Expand All @@ -841,7 +841,7 @@ def init_getMedia(the_dict):
parent_id='lib_id'
else:
if (('subfolder_id' in lib_info) and (not (lib_info['subfolder_id'] == None))):
library_id='subfolder_id'
library_id='lib_id'
parent_id='lib_id'
else:
library_id='lib_id'
Expand Down
2 changes: 1 addition & 1 deletion mumc_modules/mumc_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#Get the current script version
def get_script_version():
return '5.8.34'
return '5.8.35'


#Get the min config version
Expand Down

0 comments on commit fd5d33a

Please sign in to comment.