Skip to content

Commit

Permalink
webserver: no need to decode the received URL as libmicrohttpd alread…
Browse files Browse the repository at this point in the history
…y does this for us
  • Loading branch information
Montellese committed Mar 4, 2012
1 parent 7ff6e47 commit d5b3519
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion xbmc/network/WebServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ int CWebServer::AnswerToConnection(void *cls, struct MHD_Connection *connection,
if (strURL.Left(4).Equals("/vfs"))
{
strURL = strURL.Right(strURL.length() - 5);
CURL::Decode(strURL);
return CreateFileDownloadResponse(connection, strURL, methodType);
}

Expand Down

0 comments on commit d5b3519

Please sign in to comment.