From 65285d4b3aa24fa21562d1bc321d5256b1f89922 Mon Sep 17 00:00:00 2001 From: blacktwin Date: Tue, 3 Nov 2020 00:36:16 -0500 Subject: [PATCH] fix for remove action not working on jbop predefined titles --- fun/playlist_manager.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fun/playlist_manager.py b/fun/playlist_manager.py index 307bf80..c88081f 100644 --- a/fun/playlist_manager.py +++ b/fun/playlist_manager.py @@ -883,6 +883,8 @@ if __name__ == "__main__": logger.info("Deleting the playlist(s)...") for data in playlist_dict['data']: titles = data['user_selected'] + # if no titles were selected then assume jbop, libraries, and title used + titles = titles if titles else title delete_playlist(data, titles) # Check if limit exist and if it's greater than the pulled list of rating keys