Skip to content
Snippets Groups Projects
Commit a637ce7d authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

fixed url encoding for path route parameter

parent bfb0e0fd
No related branches found
No related tags found
No related merge requests found
......@@ -420,13 +420,17 @@ class ProxyController extends Controller
$parameters = [
"host" => $host,
"path" => $path,
"path" => rawurlencode($path),
"url" => $url,
"valid-until" => $validUntil,
"password" => $password,
];
return route('proxy', $parameters);
try{
return route('proxy', $parameters);
}catch (\Exception $e){
$test = "test";
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment