diff options
author | montellese <montellese@xbmc.org> | 2013-12-13 22:33:15 +0100 |
---|---|---|
committer | montellese <montellese@xbmc.org> | 2013-12-13 22:33:15 +0100 |
commit | ce4cdf6a0e853f97df36a19852065e8e35676c11 (patch) | |
tree | 79ccb2815a2a467551bb0b21fb38c654d47c8431 | |
parent | 21451f2c3d980a341d0d658006538be356fa4f02 (diff) |
upnp: fix parsing of <dc:date> (which is in W3C format)
-rw-r--r-- | xbmc/network/upnp/UPnPInternal.cpp | 2 |
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()) { |