aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Borges de Freitas <92enen@gmail.com>2023-09-28 22:11:23 +0100
committerGitHub <noreply@github.com>2023-09-28 22:11:23 +0100
commit8813aaadf4a44667b95cda601e263ac540759fd9 (patch)
tree7d6f4c7433589b5bdf5637dcd67f30d5cd74c94b
parent2d85e2fc431a0804a8e394691aae58aca049c66c (diff)
parentb3542a899eb1670de91190403f6174a6b309d6b7 (diff)
Merge pull request #23831 from enen92/upnp_smart_playlist
[upnp] Fix smart playlist folder definitions
-rw-r--r--xbmc/playlists/PlayListFactory.cpp4
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");
}