mirror of
https://github.com/Viren070/AIOStreams.git
synced 2025-12-01 23:14:04 +01:00
feat: increase default MAX_EPISODE_SIZE to 150GiB
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user