This commit is contained in:
Laura Hausmann 2020-10-18 23:11:38 +02:00
parent 92c834f88c
commit c8ad99cd79
Signed by: zotan
GPG Key ID: 5EC1D38FFC321311
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ namespace webmusic.Pages
.Replace("+", "%2B"));
if (path.EndsWith(".m3u"))
path = path.Substring(0, path.Length - 4);
if (path.Contains(".."))
if (path.Contains("/.."))
{
Response.Redirect("/Error");
return;