aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/FileSystem/FileCurl.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/xbmc/FileSystem/FileCurl.cpp b/xbmc/FileSystem/FileCurl.cpp
index 19eb4184bb..c7724db550 100644
--- a/xbmc/FileSystem/FileCurl.cpp
+++ b/xbmc/FileSystem/FileCurl.cpp
@@ -646,11 +646,6 @@ void CFileCurl::ParseAndCorrectUrl(CURL &url2)
CLog::Log(LOGDEBUG, "Using proxy %s", m_proxy.c_str());
}
- // replace invalid spaces
- CStdString strFileName = url2.GetFileName();
- strFileName.Replace(" ", "%20");
- url2.SetFileName(strFileName);
-
// get username and password
m_username = url2.GetUserName();
m_password = url2.GetPassWord();