mirror of https://github.com/iv-org/invidious.git
Add fix for videoplayback requests with trailing slash
This commit is contained in:
parent
f05afaf342
commit
aa389399bc
|
@ -997,6 +997,7 @@ get "/videoplayback*" do |env|
|
|||
path = env.request.path
|
||||
if path != "/videoplayback"
|
||||
path = path.lchop("/videoplayback/")
|
||||
path = path.rchop("/")
|
||||
path = path.split("/")
|
||||
|
||||
raw_params = {} of String => Array(String)
|
||||
|
|
Loading…
Reference in New Issue