From f8ceee6539c19bd46be9fd52c96507796a2db76f Mon Sep 17 00:00:00 2001 From: Christian Fetzer Date: Thu, 1 Nov 2012 11:04:28 +0100 Subject: [PATCH] [mythtv-cmyth] Use StartTime instead of RecordingStartTime for recordings. If StartTime is 20:15, RecordingStartTime might be set to 20:10 in case the show starts a bit earlier. Hence recordings represent a specific show, it's better to show the StartTime in the recordings view. --- addons/pvr.mythtv.cmyth/src/pvrclient-mythtv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/pvr.mythtv.cmyth/src/pvrclient-mythtv.cpp b/addons/pvr.mythtv.cmyth/src/pvrclient-mythtv.cpp index 3bdb09b98..0d599b115 100644 --- a/addons/pvr.mythtv.cmyth/src/pvrclient-mythtv.cpp +++ b/addons/pvr.mythtv.cmyth/src/pvrclient-mythtv.cpp @@ -471,7 +471,7 @@ PVR_ERROR PVRClientMythTV::GetRecordings(ADDON_HANDLE handle) PVR_RECORDING tag; memset(&tag, 0, sizeof(PVR_RECORDING)); - tag.recordingTime = it->second.RecordingStartTime(); + tag.recordingTime = it->second.StartTime(); tag.iDuration = it->second.Duration(); tag.iPlayCount = it->second.IsWatched() ? 1 : 0;