increase max_lookback to 100

This commit is contained in:
diogo 2021-07-19 12:06:34 +03:00
parent 742a273df1
commit 79aca68c08
No known key found for this signature in database
GPG Key ID: ED45B7CCDB979B99
2 changed files with 3 additions and 3 deletions

View File

@ -243,9 +243,9 @@ https_only: false
## Maximum videos to be loaded into the playlist before the video playing
##
## Accepted values: a positive integer
## Default: 50
## Default: 100
##
max_lookback: 50
max_lookback: 100
# -----------------------------
# Users and accounts

View File

@ -96,7 +96,7 @@ class Config
property banner : String? = nil # Optional banner to be displayed along top of page for announcements, etc.
property hsts : Bool? = true # Enables 'Strict-Transport-Security'. Ensure that `domain` and all subdomains are served securely
property disable_proxy : Bool? | Array(String)? = false # Disable proxying server-wide: options: 'dash', 'livestreams', 'downloads', 'local'
property max_lookback : Int32 = 50 # Maximum videos to be loaded into the playlist before the video playing
property max_lookback : Int32 = 100 # Maximum videos to be loaded into the playlist before the video playing
@[YAML::Field(converter: Preferences::FamilyConverter)]
property force_resolve : Socket::Family = Socket::Family::UNSPEC # Connect to YouTube over 'ipv6', 'ipv4'. Will sometimes resolve fix issues with rate-limiting (see https://github.com/ytdl-org/youtube-dl/issues/21729)