From 767e18791c943d04a75d89b24ea9e31fdc89968b Mon Sep 17 00:00:00 2001
From: Jason Volk <jason@zemos.net>
Date: Sat, 6 Jul 2019 05:50:13 -0700
Subject: [PATCH] modules/client/sync: Fix queue pop.

---
 modules/client/sync.cc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/modules/client/sync.cc b/modules/client/sync.cc
index 6a71dddce..cf5c16c04 100644
--- a/modules/client/sync.cc
+++ b/modules/client/sync.cc
@@ -732,8 +732,7 @@ try
 
 		const unwind pop{[]
 		{
-			if(longpoll::polling <= 1)
-				queue.pop_front();
+			queue.pop_front();
 		}};
 
 		if(polylog_only)