aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/PasswordManager.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/xbmc/PasswordManager.cpp b/xbmc/PasswordManager.cpp
index bc03169bfd..fbc87e0e0d 100644
--- a/xbmc/PasswordManager.cpp
+++ b/xbmc/PasswordManager.cpp
@@ -118,7 +118,13 @@ bool CPasswordManager::IsURLSupported(const CURL &url)
{
return url.IsProtocol("smb")
|| url.IsProtocol("nfs")
- || url.IsProtocol("sftp");
+ || url.IsProtocol("ftp")
+ || url.IsProtocol("ftps")
+ || url.IsProtocol("sftp")
+ || url.IsProtocol("http")
+ || url.IsProtocol("https")
+ || url.IsProtocol("dav")
+ || url.IsProtocol("davs");
}
void CPasswordManager::Clear()