From 62796f71511c5b36d63a16be0b2e5e77da49b76e Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 6 Nov 2023 20:48:32 +0100 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/smartstream.classes.streamintake.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index eb9586a..5fcf5c2 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartstream', - version: '3.0.7', + version: '3.0.8', description: 'simplifies access to node streams' } diff --git a/ts/smartstream.classes.streamintake.ts b/ts/smartstream.classes.streamintake.ts index 2feb5e9..29a9268 100644 --- a/ts/smartstream.classes.streamintake.ts +++ b/ts/smartstream.classes.streamintake.ts @@ -48,5 +48,6 @@ export class StreamIntake extends plugins.stream.Readable { this.signalEndBoolean = true; this.pushedNextDeferred.resolve(); this.pushNextObservable.signalComplete(); + this.push(null); } }