Skip to content

Commit

Permalink
Disable decrypt_polling by default + add comment (iv-org#3244)
Browse files Browse the repository at this point in the history
  • Loading branch information
unixfox authored Aug 6, 2022
1 parent 0c64a86 commit 3d77642
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions config/config.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,13 @@ feed_threads: 1
## Note: This part of the code generate a small amount of data every minute.
## This may not be desired if you have bandwidth limits set by your ISP.
##
## Note 2: This part of the code is currently broken, so changing
## this setting has no impact.
##
## Accepted values: true, false
## Default: true
## Default: false
##
#decrypt_polling: true
#decrypt_polling: false


# -----------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/invidious/config.cr
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Config
@[YAML::Field(converter: Preferences::URIConverter)]
property database_url : URI = URI.parse("")
# Use polling to keep decryption function up to date
property decrypt_polling : Bool = true
property decrypt_polling : Bool = false
# Used for crawling channels: threads should check all videos uploaded by a channel
property full_refresh : Bool = false
# Used to tell Invidious it is behind a proxy, so links to resources should be https://
Expand Down

0 comments on commit 3d77642

Please sign in to comment.