From e20f044001b8fb0e1d6e42100201d8a62a2d3167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Tue, 19 Jun 2018 19:05:03 +0200 Subject: [PATCH] Increase timeframe for duplicate search A too short timeframe leads to not recognizing duplicates if the server time differs from the user time. This is only a problem with mam:1 Fixes #8750 --- gajim/common/logger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gajim/common/logger.py b/gajim/common/logger.py index bb5fadb28..9682cb7fa 100644 --- a/gajim/common/logger.py +++ b/gajim/common/logger.py @@ -1235,8 +1235,8 @@ class Logger: """ # Add 10 seconds around the timestamp - start_time = timestamp - 10 - end_time = timestamp + 10 + start_time = timestamp - 30 + end_time = timestamp + 30 account_id = self.get_account_id(account) log.debug('start: %s, end: %s, jid: %s, message: %s',