aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlasdair Campbell <alcoheca@gmail.com>2013-04-02 19:39:22 +0100
committerAlasdair Campbell <alcoheca@gmail.com>2013-04-02 19:40:55 +0100
commitccdba4e2a281970c4b5a2b81a85831f5bd8cf61d (patch)
tree5e4abb187942a219969a10094e7473b531bd1fe3
parent5476b0911b6f4a21c0fcb0a69a88c73e8c26dc7f (diff)
upnp: missing info for music videos, fixes #14239 thanks to Pulfer
-rw-r--r--xbmc/network/upnp/UPnPServer.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/xbmc/network/upnp/UPnPServer.cpp b/xbmc/network/upnp/UPnPServer.cpp
index 0518d14e35..1b92f99f17 100644
--- a/xbmc/network/upnp/UPnPServer.cpp
+++ b/xbmc/network/upnp/UPnPServer.cpp
@@ -308,6 +308,8 @@ CUPnPServer::Build(CFileItemPtr item,
if (params.GetMovieId() >= 0 )
db.GetMovieInfo((const char*)path, *item->GetVideoInfoTag(), params.GetMovieId());
+ if (params.GetMVideoId() >= 0 )
+ db.GetMusicVideoInfo((const char*)path, *item->GetVideoInfoTag(), params.GetMVideoId());
else if (params.GetEpisodeId() >= 0 )
db.GetEpisodeInfo((const char*)path, *item->GetVideoInfoTag(), params.GetEpisodeId());
else if (params.GetTvShowId() >= 0 )