diff --git a/VERSION b/VERSION index 1dac885c..45f7112b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.1-develop38 +1.17.1-develop39 diff --git a/modules/plex.py b/modules/plex.py index 775e6eed..3ffaee9d 100644 --- a/modules/plex.py +++ b/modules/plex.py @@ -1033,7 +1033,12 @@ class Plex(Library): if not item_asset_directory: if isinstance(item, (Movie, Artist, Album, Show, Episode, Season)): - starting = item.show() if isinstance(item, (Episode, Season)) else item + if isinstance(item, (Episode, Season)): + starting = item.show() + elif isinstance(item, (Album, Track)): + starting = item.artist() + else: + starting = item if not starting.locations: raise Failed(f"Asset Warning: No video filepath found fo {item.title}") path_test = str(starting.locations[0])