diff options
author | montellese <montellese@xbmc.org> | 2013-12-27 13:02:01 +0100 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2013-12-27 13:02:01 +0100 |
commit | bcac867529a2c189c7f18fff6547bf68c826f21e (patch) | |
tree | 10dc06a170fc8cd2d54d82ac1e182bc07a28b02a /lib | |
parent | c44214ad9af288be467747f06a22e20392f6de07 (diff) |
platinum: fix parsing of upnp:actor in PltMediaItem
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libUPnP/Platinum/Source/Devices/MediaServer/PltMediaItem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltMediaItem.cpp b/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltMediaItem.cpp index d6986be732..a6566eb23d 100644 --- a/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltMediaItem.cpp +++ b/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltMediaItem.cpp @@ -510,7 +510,7 @@ PLT_MediaObject::FromDidl(NPT_XmlElementNode* entry) m_People.authors.FromDidl(children); children.Clear(); - PLT_XmlHelper::GetChildren(entry, children, "actors", didl_namespace_upnp); + PLT_XmlHelper::GetChildren(entry, children, "actor", didl_namespace_upnp); m_People.actors.FromDidl(children); children.Clear(); |