Skip to content

Commit

Permalink
Fixed: recording playback when the description contains text with a r…
Browse files Browse the repository at this point in the history
…eturn
  • Loading branch information
margro committed Jan 12, 2019
1 parent 25e3e7d commit 30c80ac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.mediaportal.tvserver/addon.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<addon <addon
id="pvr.mediaportal.tvserver" id="pvr.mediaportal.tvserver"
version="3.5.14" version="3.5.15"
name="MediaPortal PVR Client" name="MediaPortal PVR Client"
provider-name="Marcel Groothuis"> provider-name="Marcel Groothuis">
<requires>@ADDON_DEPENDS@</requires> <requires>@ADDON_DEPENDS@</requires>
Expand Down
3 changes: 3 additions & 0 deletions pvr.mediaportal.tvserver/changelog.txt
@@ -1,3 +1,6 @@
v3.5.15:
- Fixed: recording playback when the description contains text with a return

v3.5.14: v3.5.14:
- Fixed: Delete the tsreader when tuning to a new channel failed. This fixes the first re-tune to a working channel after a failure - Fixed: Delete the tsreader when tuning to a new channel failed. This fixes the first re-tune to a working channel after a failure
- Updated: recommended TVServerKodi version to build 140 - Updated: recommended TVServerKodi version to build 140
Expand Down
3 changes: 2 additions & 1 deletion src/pvrclient-mediaportal.cpp
Expand Up @@ -2369,12 +2369,13 @@ cRecording* cPVRClientMediaPortal::GetRecordingInfo(const PVR_RECORDING & record
string result; string result;
string command; string command;


command = StringUtils::Format("GetRecordingInfo:%s|%s|False|%s\n", command = StringUtils::Format("GetRecordingInfo:%s|%s|True|%s\n",
recording.strRecordingId, recording.strRecordingId,
((g_bUseRTSP || g_eStreamingMethod == ffmpeg) ? "True" : "False"), ((g_bUseRTSP || g_eStreamingMethod == ffmpeg) ? "True" : "False"),
g_bResolveRTSPHostname ? "True" : "False" g_bResolveRTSPHostname ? "True" : "False"
); );
result = SendCommand(command); result = SendCommand(command);
uri::decode(result);


if (result.empty()) if (result.empty())
{ {
Expand Down

0 comments on commit 30c80ac

Please sign in to comment.