diff options
author | montellese <montellese@xbmc.org> | 2014-01-23 19:36:06 +0100 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2014-01-23 19:36:06 +0100 |
commit | 80dfacb5ec2ff32cdd07d9d897cf2ac5048d0719 (patch) | |
tree | 9df50eab28909a3fdea5703624938f7ebb6ded75 /lib/libUPnP | |
parent | db1fb741700a231bf1d627a2564dcf6adad2556c (diff) |
platinum: lastPlaybackTime is in the "upnp" and not in the "dc" namespace
Diffstat (limited to 'lib/libUPnP')
-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 a6566eb23d..85b5856966 100644 --- a/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltMediaItem.cpp +++ b/lib/libUPnP/Platinum/Source/Devices/MediaServer/PltMediaItem.cpp @@ -559,7 +559,7 @@ PLT_MediaObject::FromDidl(NPT_XmlElementNode* entry) if (NPT_FAILED(str.ToInteger(value))) value = 0; m_MiscInfo.last_position = value; - PLT_XmlHelper::GetChildText(entry, "lastPlaybackTime", m_MiscInfo.last_time, didl_namespace_dc, 256); + PLT_XmlHelper::GetChildText(entry, "lastPlaybackTime", m_MiscInfo.last_time, didl_namespace_upnp, 256); NPT_String parsed_last_time; for (int format=0; format<=NPT_DateTime::FORMAT_RFC_1036; format++) { NPT_DateTime date; |