diff options
author | nullkal <nullkal@nil.nu> | 2017-12-13 22:27:36 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-12-13 14:27:36 +0100 |
commit | ccf4f170de86f24d5a243c411b807f1c394723cf (patch) | |
tree | 9ca4e5a1098abd82f3f9794a23974be7843cc310 /streaming | |
parent | 90e7da16a013e7d9024adbbf484123959f83ef01 (diff) |
Make sure call `done();` in the listener of public timeline for anonymous connection (#6009)
Diffstat (limited to 'streaming')
-rw-r--r-- | streaming/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
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(); } }); |