mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[81] separate mass_collection_mode displays
This commit is contained in:
parent
a3dd3c09ee
commit
f7dbd54fe2
2 changed files with 6 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.15.1-develop80
|
||||
1.15.1-develop81
|
||||
|
|
|
@ -703,7 +703,11 @@ def library_operations(config, library):
|
|||
logger.info(f"{col.title} Deleted")
|
||||
elif col.title not in library.collections:
|
||||
unmanaged_collections.append(col)
|
||||
if library.mass_collection_mode:
|
||||
if library.mass_collection_mode:
|
||||
logger.info("")
|
||||
logger.separator(f"Mass Collection Mode for {library.name} Library", space=False, border=False)
|
||||
logger.info("")
|
||||
for col in library.get_all_collections():
|
||||
library.collection_mode_query(col, library.mass_collection_mode)
|
||||
|
||||
if library.show_unmanaged and len(unmanaged_collections) > 0:
|
||||
|
|
Loading…
Reference in a new issue