From 6b8b5b6957a73a02dc6663c0e742d3de506de31d Mon Sep 17 00:00:00 2001 From: librelois <elois@ifee.fr> Date: Wed, 1 Nov 2017 22:47:40 +0100 Subject: [PATCH] [fix] #1168 real cause --- app/lib/computation/QuickSync.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/computation/QuickSync.ts b/app/lib/computation/QuickSync.ts index 038740eb7..ccdeac10a 100644 --- a/app/lib/computation/QuickSync.ts +++ b/app/lib/computation/QuickSync.ts @@ -126,7 +126,7 @@ export class QuickSynchronizer { // Remember expiration dates for (const entry of index) { - if (entry.op === 'CREATE' && (entry.expires_on || entry.revokes_on)) { + if (entry.expires_on || entry.revokes_on) { sync_expires.push(entry.expires_on || entry.revokes_on); } } -- GitLab