diff options
author | Matthias Kortstiege <mkortstiege@users.noreply.github.com> | 2015-04-12 08:46:36 +0200 |
---|---|---|
committer | Matthias Kortstiege <mkortstiege@users.noreply.github.com> | 2015-04-12 08:46:36 +0200 |
commit | 98d40a75af81bba2a0da7852f4e5abff10dadec2 (patch) | |
tree | 5271fedd3bf986470c1ae4a52c1bff69b562286a | |
parent | 2dd0e8f042839a5a70f37381e585c878a415311f (diff) | |
parent | fdccefa98075542c44d2ff90ebd1d2af777a950e (diff) |
Merge pull request #6931 from ronie/LibraryMusic
[FileUtils] 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")) |