feat: increase default MAX_EPISODE_SIZE to 150GiB

This commit is contained in:
Viren070
2025-04-20 19:59:09 +01:00
parent 95de2bec35
commit 7c6de101ea
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ MAX_ADDONS=15
MAX_KEYWORD_FILTERS=30
# To control the maximum size the size filter sliders can go up to in bytes
MAX_MOVIE_SIZE=161061273600
MAX_EPISODE_SIZE=16106127360
MAX_EPISODE_SIZE=161061273600
# The maximum timeout that can be set for an addon through the override option
MAX_TIMEOUT=50000
MIN_TIMEOUT=1000
+1 -1
View File
@@ -79,7 +79,7 @@ export class Settings {
: 161061273600; // 150GiB
public static readonly MAX_EPISODE_SIZE = process.env.MAX_EPISODE_SIZE
? parseInt(process.env.MAX_EPISODE_SIZE)
: 75161927680; // 70GiB
: 161061273600; // 150GiB
public static readonly MAX_TIMEOUT = process.env.MAX_TIMEOUT
? parseInt(process.env.MAX_TIMEOUT)
: 50000;