aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2013-12-13 22:33:15 +0100
committermontellese <montellese@xbmc.org>2013-12-13 22:33:15 +0100
commitce4cdf6a0e853f97df36a19852065e8e35676c11 (patch)
tree79ccb2815a2a467551bb0b21fb38c654d47c8431
parent21451f2c3d980a341d0d658006538be356fa4f02 (diff)
upnp: fix parsing of <dc:date> (which is in W3C format)
-rw-r--r--xbmc/network/upnp/UPnPInternal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/network/upnp/UPnPInternal.cpp b/xbmc/network/upnp/UPnPInternal.cpp
index 4e3100df05..96acecbe28 100644
--- a/xbmc/network/upnp/UPnPInternal.cpp
+++ b/xbmc/network/upnp/UPnPInternal.cpp
@@ -631,7 +631,7 @@ PopulateTagFromObject(CVideoInfoTag& tag,
PLT_MediaItemResource* resource /* = NULL */)
{
CDateTime date;
- date.SetFromDateString((const char*)object.m_Date);
+ date.SetFromW3CDate((const char*)object.m_Date);
if(!object.m_Recorded.program_title.IsEmpty())
{