Advertisement
Guest User

Untitled

a guest
Mar 29th, 2013
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.89 KB | None | 0 0
  1. diff -urN xbmc-12.1/xbmc/network/upnp/UPnPInternal.cpp xbmc-12.1-patched/xbmc/network/upnp/UPnPInternal.cpp
  2. --- xbmc-12.1/xbmc/network/upnp/UPnPInternal.cpp        2013-03-21 03:14:42.000000000 +1100
  3. +++ xbmc-12.1-patched/xbmc/network/upnp/UPnPInternal.cpp        2013-03-30 14:29:38.668105769 +1100
  4. @@ -238,7 +238,7 @@
  5.          if (tag.m_type == "musicvideo") {
  6.            object.m_ObjectClass.type = "object.item.videoItem.musicVideoClip";
  7.            object.m_Creator = StringUtils::Join(tag.m_artist, g_advancedSettings.m_videoItemSeparator);
  8. -          object.m_Title = tag.m_strTitle;
  9. +          object.m_Title = NPT_String::Format("%s - %s", (char *)object.m_Creator, tag.m_strTitle.c_str());
  10.            object.m_ReferenceID = NPT_String::Format("videodb://3/2/%i", tag.m_iDbId);
  11.          } else if (tag.m_type == "movie") {
  12.            object.m_ObjectClass.type = "object.item.videoItem.movie";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement