From 046f4e652bbe2700ff98ba784868b20965b5b72e Mon Sep 17 00:00:00 2001 From: morpheus65535 <5130500+morpheus65535@users.noreply.github.com> Date: Sun, 16 Dec 2018 23:35:48 -0500 Subject: [PATCH] Continuing development --- bazarr/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bazarr/main.py b/bazarr/main.py index 13f03e9e7..87c7ec0f2 100644 --- a/bazarr/main.py +++ b/bazarr/main.py @@ -1753,8 +1753,7 @@ def handle_websocket(): while True: try: if len(queueconfig.q4ws) > 0: - wsock.send(queueconfig.q4ws[0]) - queueconfig.q4ws.popleft() + wsock.send(queueconfig.q4ws.popleft()) gevent.sleep(0) except WebSocketError: break