Add comment

This commit is contained in:
Jip Fr 2023-12-01 14:41:25 +01:00
parent c39d61cf53
commit e653c72d87

View File

@ -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
};
}