*If the stream is canceled send a message with a cancel property

This commit is contained in:
Derrick Hammer 2022-08-31 20:44:47 -04:00
parent 327c429d1e
commit bba6fa89be
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -62,6 +62,7 @@ export default class StreamingRpcQuery extends SimpleRpcQuery {
} }
if (this._canceled) { if (this._canceled) {
socket.write(pack({ cancel: true }));
finish(); finish();
return; return;
} }