aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjenkins4kodi <jenkins4kodi@users.noreply.github.com>2015-12-28 14:13:06 +0100
committerjenkins4kodi <jenkins4kodi@users.noreply.github.com>2015-12-28 14:13:06 +0100
commit6465c52bf8321e34956e5e1b6be006d6244ece72 (patch)
tree9849391cf772eb1a97a504560cb5b23136f74312
parentce88c48113bf0aa1503cd65b3b8bdcd8f7b9b654 (diff)
parent0e1b270e1c0e9b3778a890d1bb63739984bce99b (diff)
Merge pull request #8681 from Montellese/Jarvis_jsonrpc_fix_broadcast_runtime
-rw-r--r--xbmc/epg/EpgInfoTag.cpp2
-rw-r--r--xbmc/interfaces/json-rpc/schema/version.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/epg/EpgInfoTag.cpp b/xbmc/epg/EpgInfoTag.cpp
index 567207442a..18574cf8dc 100644
--- a/xbmc/epg/EpgInfoTag.cpp
+++ b/xbmc/epg/EpgInfoTag.cpp
@@ -202,7 +202,7 @@ void CEpgInfoTag::Serialize(CVariant &value) const
value["filenameandpath"] = m_strFileNameAndPath;
value["starttime"] = m_startTime.IsValid() ? m_startTime.GetAsDBDateTime() : StringUtils::Empty;
value["endtime"] = m_endTime.IsValid() ? m_endTime.GetAsDBDateTime() : StringUtils::Empty;
- value["runtime"] = StringUtils::Format("%d", GetDuration() / 60);
+ value["runtime"] = GetDuration() / 60;
value["firstaired"] = m_firstAired.IsValid() ? m_firstAired.GetAsDBDate() : StringUtils::Empty;
value["progress"] = Progress();
value["progresspercentage"] = ProgressPercentage();
diff --git a/xbmc/interfaces/json-rpc/schema/version.txt b/xbmc/interfaces/json-rpc/schema/version.txt
index 4b3b8be193..d9589113ad 100644
--- a/xbmc/interfaces/json-rpc/schema/version.txt
+++ b/xbmc/interfaces/json-rpc/schema/version.txt
@@ -1 +1 @@
-6.32.3
+6.32.4