diff --git a/src/mimefactory.rs b/src/mimefactory.rs index 040f40b2e..b4172a6c7 100644 --- a/src/mimefactory.rs +++ b/src/mimefactory.rs @@ -305,7 +305,7 @@ impl<'a, 'b> MimeFactory<'a, 'b> { let chat = self.chat.as_ref().unwrap(); // beside key- and member-changes, force re-gossip every 48 hours let gossiped_timestamp = chat.get_gossiped_timestamp(self.context); - if gossiped_timestamp == 0 || (gossiped_timestamp + (2 * 24 * 60 * 60)) > time() { + if time() > gossiped_timestamp + (2 * 24 * 60 * 60) { return true; }