mirror of https://github.com/iv-org/invidious.git
Decode URL encoded preference cookie when parsing
This commit is contained in:
parent
065c104f27
commit
0a87ba6930
|
@ -166,7 +166,7 @@ end
|
|||
|
||||
before_all do |env|
|
||||
preferences = begin
|
||||
Preferences.from_json(env.request.cookies["PREFS"]?.try &.value || "{}")
|
||||
Preferences.from_json(URI.decode_www_form(env.request.cookies["PREFS"]?.try &.value || "{}"))
|
||||
rescue
|
||||
Preferences.from_json("{}")
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue