diff options
author | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2015-10-19 13:39:15 +0200 |
---|---|---|
committer | Kai Sommerfeld <kai.sommerfeld@gmx.com> | 2015-10-19 13:39:15 +0200 |
commit | 79f19d507f63c5c4d6b72149bea4c026985e0bd7 (patch) | |
tree | 439824884fb6ee828470ed3906f7893b728375bb | |
parent | 592d78faf0b06ce6b03906ef9956d766f0022428 (diff) | |
parent | 890da5faea71536e14455d42a3e222f0ccb1c908 (diff) |
Merge pull request #8252 from Jalle19/duplicate-recording-playback
Revert "[pvr] fix playback of recordings when an exact duplicate exists"
-rw-r--r-- | xbmc/pvr/recordings/PVRRecording.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/pvr/recordings/PVRRecording.cpp b/xbmc/pvr/recordings/PVRRecording.cpp index 826f457a1d..b25da213a4 100644 --- a/xbmc/pvr/recordings/PVRRecording.cpp +++ b/xbmc/pvr/recordings/PVRRecording.cpp @@ -428,10 +428,10 @@ void CPVRRecording::UpdatePath(void) if (!strSeasonEpisode.empty()) strSeasonEpisode = StringUtils::Format(" %s", strSeasonEpisode.c_str()); - m_strFileNameAndPath = StringUtils::Format("pvr://" PVR_RECORDING_BASE_PATH "/%s/%s%s%s%s%s%s, TV%s, %s.pvr", + m_strFileNameAndPath = StringUtils::Format("pvr://" PVR_RECORDING_BASE_PATH "/%s/%s%s%s%s%s, TV%s, %s.pvr", m_bIsDeleted ? PVR_RECORDING_DELETED_PATH : PVR_RECORDING_ACTIVE_PATH, strDirectory.c_str(), strTitle.c_str(), strSeasonEpisode.c_str(), strYear.c_str(), strSubtitle.c_str(), - strChannel.c_str(), strDatetime.c_str(), m_strRecordingId.c_str()); + strChannel.c_str(), strDatetime.c_str()); } } |