Remove 'host' from query params

This commit is contained in:
Omar Roth 2019-03-11 13:32:46 -05:00
parent f01152eda1
commit 58f4212aa8
1 changed files with 1 additions and 1 deletions

View File

@ -4218,8 +4218,8 @@ get "/videoplayback" do |env|
query_params = env.params.query query_params = env.params.query
if query_params["host"]? && !query_params["host"].empty? if query_params["host"]? && !query_params["host"].empty?
pp query_params["host"]
host = "https://#{query_params["host"]}" host = "https://#{query_params["host"]}"
query_params.delete("host")
else else
fvip = query_params["fvip"]? || "3" fvip = query_params["fvip"]? || "3"
mn = query_params["mn"].split(",").pop mn = query_params["mn"].split(",").pop