From 69e410262709510770c5d9b9d6f3eefef0075d48 Mon Sep 17 00:00:00 2001 From: Alexandru Branza Date: Sun, 25 Feb 2024 15:03:36 +0200 Subject: [PATCH] missing require added --- src/withStreamingServer/destroyHLSConverter.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/withStreamingServer/destroyHLSConverter.js b/src/withStreamingServer/destroyHLSConverter.js index b0f5f0d..2b53dda 100644 --- a/src/withStreamingServer/destroyHLSConverter.js +++ b/src/withStreamingServer/destroyHLSConverter.js @@ -1,3 +1,5 @@ +var url = require('url'); + function destroyHLSConverter(streamingServerURL, id) { return fetch(url.resolve(streamingServerURL, '/hlsv2/' + encodeURIComponent(id) + '/destroy')); }