[instagram] prevent post 'date' overwriting file 'date' (#3392)

This commit is contained in:
Mike Fährmann
2022-12-12 11:38:48 +01:00
parent 6b6f886dcf
commit a001c9c06f

View File

@@ -65,6 +65,10 @@ class InstagramExtractor(Extractor):
post["count"] = len(files)
yield Message.Directory, post
if "date" in post:
del post["date"]
for file in files:
file.update(post)