diff options
author | Miguel Borges de Freitas <92enen@gmail.com> | 2023-09-28 22:11:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 22:11:23 +0100 |
commit | 8813aaadf4a44667b95cda601e263ac540759fd9 (patch) | |
tree | 7d6f4c7433589b5bdf5637dcd67f30d5cd74c94b | |
parent | 2d85e2fc431a0804a8e394691aae58aca049c66c (diff) | |
parent | b3542a899eb1670de91190403f6174a6b309d6b7 (diff) |
Merge pull request #23831 from enen92/upnp_smart_playlist
[upnp] Fix smart playlist folder definitions
-rw-r--r-- | xbmc/playlists/PlayListFactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/playlists/PlayListFactory.cpp b/xbmc/playlists/PlayListFactory.cpp index dc45bcce2d..66c508633b 100644 --- a/xbmc/playlists/PlayListFactory.cpp +++ b/xbmc/playlists/PlayListFactory.cpp @@ -134,12 +134,12 @@ bool CPlayListFactory::IsPlaylist(const CFileItem& item) bool CPlayListFactory::IsPlaylist(const CURL& url) { return URIUtils::HasExtension(url, - ".m3u|.m3u8|.b4s|.pls|.strm|.wpl|.asx|.ram|.url|.pxml|.xspf"); + ".m3u|.m3u8|.b4s|.pls|.strm|.wpl|.asx|.ram|.url|.pxml|.xspf|.xsp"); } bool CPlayListFactory::IsPlaylist(const std::string& filename) { return URIUtils::HasExtension(filename, - ".m3u|.m3u8|.b4s|.pls|.strm|.wpl|.asx|.ram|.url|.pxml|.xspf"); + ".m3u|.m3u8|.b4s|.pls|.strm|.wpl|.asx|.ram|.url|.pxml|.xspf|.xsp"); } |