remove st tag

This commit is contained in:
2025-06-24 19:45:41 +02:00
parent 00ccb96581
commit 85467f4f1e
10 changed files with 45 additions and 50 deletions

View File

@@ -205,6 +205,8 @@ def get_image_info(item: str, folder: str) -> dict[str, Any]:
...
if None in tags:
tags.remove(None)
if "st" in tags:
tags.remove("st")
return {"width": width, "height": height, "tags": tags, "exifdata": exifdata, "xmp": xmp}
@@ -241,6 +243,8 @@ def get_tags(sidecarfile: str) -> list[str]:
...
if None in tags:
tags.remove(None)
if "st" in tags:
tags.remove("st")
return tags