From 3ab2892066088da5f51bb56c1ff4dd11ee60112e Mon Sep 17 00:00:00 2001 From: chrisblech Date: Thu, 25 May 2023 23:17:55 +0200 Subject: [PATCH] consumer.py: read `create_date` from original file (instead of temp copy) In line 328, `self.path` is set to a fresh written copy of the source file. This copy has a different timestamp (=now). When using the source file's timestamp as `create_date`, it makes much more sense to ask for the timestamp from `self.original_path` --- src/documents/consumer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 7c4ddf003..7ccc8336a 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -530,7 +530,7 @@ class Consumer(LoggingMixin): create_date = date self.log.debug(f"Creation date from parse_date: {create_date}") else: - stats = os.stat(self.path) + stats = os.stat(self.original_path) create_date = timezone.make_aware( datetime.datetime.fromtimestamp(stats.st_mtime), )