forked from midou/invidious
Config: Stop if 'hmac_key' is the default value
This commit is contained in:
parent
f64e311dcd
commit
ba43365acb
@ -209,6 +209,9 @@ class Config
|
||||
if config.hmac_key.empty?
|
||||
puts "Config: 'hmac_key' is required/can't be empty"
|
||||
exit(1)
|
||||
elsif config.hmac_key == "CHANGE_ME!!"
|
||||
puts "Config: The value of 'hmac_key' needs to be changed!!"
|
||||
exit(1)
|
||||
end
|
||||
|
||||
# Build database_url from db.* if it's not set directly
|
||||
|
Loading…
Reference in New Issue
Block a user