From ccf4f170de86f24d5a243c411b807f1c394723cf Mon Sep 17 00:00:00 2001 From: nullkal Date: Wed, 13 Dec 2017 22:27:36 +0900 Subject: [PATCH] Make sure call `done();` in the listener of public timeline for anonymous connection (#6009) --- streaming/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/streaming/index.js b/streaming/index.js index 303e37ab4..a42a91242 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -368,6 +368,7 @@ const startWorker = (workerId) => { log.error(err); }); } else { + done(); transmit(); } });