From e653c72d8787690cdc2425f77f6703eb94a46c03 Mon Sep 17 00:00:00 2001 From: Jip Fr Date: Fri, 1 Dec 2023 14:41:25 +0100 Subject: [PATCH] Add comment --- src/setup/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup/config.ts b/src/setup/config.ts index 534dcce2..b4fd63d5 100644 --- a/src/setup/config.ts +++ b/src/setup/config.ts @@ -66,6 +66,6 @@ export function conf(): RuntimeConfig { NORMAL_ROUTER: getKey("NORMAL_ROUTER", "false") === "true", DISALLOWED_IDS: getKey("DISALLOWED_IDS", "") .split(",") - .map((v) => v.trim()), + .map((v) => v.trim()), // Should be comma-seperated and contain the media type and ID, formatted like so: movie-753342,movie-753342,movie-753342 }; }