diff options
author | ronie <ronie@poedel.net> | 2015-04-11 21:30:38 +0200 |
---|---|---|
committer | ronie <ronie@poedel.net> | 2015-04-11 21:30:38 +0200 |
commit | fdccefa98075542c44d2ff90ebd1d2af777a950e (patch) | |
tree | ea0fb5901dec9736b84240288dfcf9c33c794704 | |
parent | f7733e55b43bdabc0d444f65a01ecce59157653f (diff) |
add library://music path
-rw-r--r-- | xbmc/utils/FileUtils.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/utils/FileUtils.cpp b/xbmc/utils/FileUtils.cpp index d9b1cffe4f..d536fa5143 100644 --- a/xbmc/utils/FileUtils.cpp +++ b/xbmc/utils/FileUtils.cpp @@ -125,6 +125,8 @@ bool CFileUtils::RemoteAccessAllowed(const std::string &strPath) return true; else if (StringUtils::StartsWithNoCase(realPath, "library://video")) return true; + else if (StringUtils::StartsWithNoCase(realPath, "library://music")) + return true; else if (StringUtils::StartsWithNoCase(realPath, "sources://video")) return true; else if (StringUtils::StartsWithNoCase(realPath, "special://musicplaylists")) |