Fixed bugs in DupFileManager and FileMonitor

DupFileManager and FileMonitor was not setting ignore-auto-tag when adding new tags.

Fixed whitelist bug associated with lowercase comparisons.
This commit is contained in:
David Maisonave
2024-09-14 15:48:14 -04:00
parent 67260ac92c
commit 7b5c8840a1
11 changed files with 3684 additions and 106 deletions

View File

@@ -777,7 +777,7 @@ def synchronize_library(removeScene=False):
stash.destroy_scene(scene['id'])
stash.Log(f"Removed Scene ID={scene['id']}; path={scene['files'][0]['path']}")
else:
stash.addTag(scene, NotInLibraryTagName)
stash.addTag(scene, NotInLibraryTagName, ignoreAutoTag=True)
stash.Trace(f"Tagged ({NotInLibraryTagName}) Scene ID={scene['id']}; path={scene['files'][0]['path']}")
def manageTagggedScenes(clearTag=True):