From 1ee11490c0f7c86b2e5a30e60c6e1a4c9c04e39e Mon Sep 17 00:00:00 2001 From: Amateur Audio Dude <168192910+AmateurAudioDude@users.noreply.github.com> Date: Fri, 5 Sep 2025 02:50:37 +1000 Subject: [PATCH] parsing parameters no longer required --- server/stream/3las.server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/stream/3las.server.js b/server/stream/3las.server.js index 43c8855..33797dc 100644 --- a/server/stream/3las.server.js +++ b/server/stream/3las.server.js @@ -334,12 +334,12 @@ class FallbackProviderWav extends AFallbackProvider { } } } +/* Parsing parameters no longer required for Server variable but we'll keep the old code here as a reference const OptionParser = { "-port": function (txt) { return parseInt(txt, 10); }, "-channels": function (txt) { return parseInt(txt, 10); }, "-samplerate": function (txt) { return parseInt(txt, 10); } }; -/* Parsing parameters no longer required for Server variable but we'll keep the old code here as a reference const Options = {}; // Parse parameters for (let i = 2; i < (process.argv.length - 1); i += 2) {