diff options
author | TylerSchroederWM <75996872+TylerSchroederWM@users.noreply.github.com> | 2021-02-08 18:00:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 18:00:44 -0500 |
commit | 3f8d08032e35b90c30504b48134f8f5ef7ea43f8 (patch) | |
tree | 0fa93793035be7757c4cbc1fa409129dd940479b | |
parent | 00da5fca003d6c4c6a9e80c4643ea94456fcfba2 (diff) | |
download | ssb-logbook-3f8d08032e35b90c30504b48134f8f5ef7ea43f8.tar.gz ssb-logbook-3f8d08032e35b90c30504b48134f8f5ef7ea43f8.zip |
actually ends the stream
-rw-r--r-- | channels-lib.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/channels-lib.js b/channels-lib.js index 8d057ce..980aac1 100644 --- a/channels-lib.js +++ b/channels-lib.js @@ -72,8 +72,9 @@ class StreamController { this.streamData[datumIndex].oldestTimestampSeen = 0; } this.pushNewlySafeMessages(); + this.outputStream.push(); } - } + }a } module.exports = { |