[SCM] kodi-pvr-vdr-vnsi/master: epg: fill episodeName with short text
tiber-guest at users.alioth.debian.org
tiber-guest at users.alioth.debian.org
Sun Feb 28 15:46:47 UTC 2016
The following commit has been merged in the master branch:
commit 921a0e521ed9bec5141d993adc07fbb7e3a6e0bb
Author: Rainer Hochecker <fernetmenta at online.de>
Date: Thu Sep 17 16:46:05 2015 +0200
epg: fill episodeName with short text
diff --git a/pvr.vdr.vnsi/addon.xml.in b/pvr.vdr.vnsi/addon.xml.in
index 05ea030..a987f4e 100644
--- a/pvr.vdr.vnsi/addon.xml.in
+++ b/pvr.vdr.vnsi/addon.xml.in
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.vdr.vnsi"
- version="1.11.5"
+ version="1.11.6"
name="VDR VNSI Client"
provider-name="FernetMenta, Team Kodi">
<requires>
diff --git a/src/VNSIData.cpp b/src/VNSIData.cpp
index 76c27b8..ee8a147 100644
--- a/src/VNSIData.cpp
+++ b/src/VNSIData.cpp
@@ -342,11 +342,14 @@ bool cVNSIData::GetEPGForChannel(ADDON_HANDLE handle, const PVR_CHANNEL &channel
tag.strWriter = "";
tag.iYear = 0;
tag.strIMDBNumber = "";
+ if (tag.strPlotOutline)
+ tag.strEpisodeName = strdup(tag.strPlotOutline);
PVR->TransferEpgEntry(handle, &tag);
delete[] tag.strTitle;
delete[] tag.strPlotOutline;
delete[] tag.strPlot;
+ free((void*)tag.strEpisodeName);
}
delete vresp;
--
kodi-pvr-vdr-vnsi packaging
More information about the pkg-multimedia-commits
mailing list