[sexcom] fix 'tags' when passing cookies (#8880)

This commit is contained in:
Mike Fährmann
2026-01-15 09:30:40 +01:00
parent 43387c535d
commit d3c77cca80

View File

@@ -39,7 +39,7 @@ class SexcomExtractor(Extractor):
pin["date"] = d
except Exception:
pass
pin["tags"] = [t[1:] for t in pin["tags"]]
pin["tags"] = [t[1:] if t[0] == "@" else t for t in pin["tags"]]
yield Message.Url, url, pin