stream/manage: inherit controller from parent istream if it exists (#587)

fixes controller handling for istream HLS playlists
This commit is contained in:
wukko 2024-06-25 21:21:52 +06:00 committed by GitHub
commit 1127e82098
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,7 @@
import NodeCache from "node-cache";
import { randomBytes } from "crypto";
import { nanoid } from "nanoid";
import { setMaxListeners } from "node:events";
import { decryptStream, encryptStream, generateHmac } from "../sub/crypto.js";
import { env } from "../config.js";
@ -79,7 +80,13 @@ export function createInternalStream(url, obj = {}) {
}
const streamID = nanoid();
const controller = new AbortController();
let controller = obj.controller;
if (!controller) {
controller = new AbortController();
setMaxListeners(Infinity, controller.signal);
}
internalStreamCache[streamID] = {
url,
service: obj.service,