summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configs/epg.dat2
-rw-r--r--recording.c10
2 files changed, 6 insertions, 6 deletions
diff --git a/configs/epg.dat b/configs/epg.dat
index ecb6076..9e4cf7f 100644
--- a/configs/epg.dat
+++ b/configs/epg.dat
@@ -501,7 +501,7 @@ Table recordinglist
TITLE "" title Ascii 200 Data,
SHORTTEXT "" shorttext Ascii 300 Data,
LONGDESCRIPTION "" longdescription MText 25000 Data,
- ORGDESCRIPTION "" orgdescription MText 25000 Data,
+ // ORGDESCRIPTION "" orgdescription MText 25000 Data,
DURATION "" duration UInt 0 Data,
FSK "" fsk UInt 1 Data,
diff --git a/recording.c b/recording.c
index 04b620e..1d0a840 100644
--- a/recording.c
+++ b/recording.c
@@ -361,7 +361,7 @@ int cUpdate::updateRecordingTable(int fullReload)
int eventId = 0;
std::string channelId = "";
const char* description = "";
- const char* longdescription = "";
+// const char* longdescription = "";
const char* title = rec->Name();
const cRecordingInfo* recInfo = rec->Info();
int pathOffset = 0;
@@ -403,8 +403,8 @@ int cUpdate::updateRecordingTable(int fullReload)
if (!isEmpty(recInfo->GetEvent()->Aux()) && xml.set(recInfo->GetEvent()->Aux()) == success)
{
- if (XMLElement* e = xml.getElementByName("longdescription"))
- longdescription = e->GetText();
+ // if (XMLElement* e = xml.getElementByName("longdescription"))
+ // longdescription = e->GetText();
}
}
}
@@ -433,8 +433,8 @@ int cUpdate::updateRecordingTable(int fullReload)
recordingListDb->setValue("CHANNELID", channelId.c_str());
recordingListDb->setValue("FSK", fsk);
- if (!isEmpty(longdescription))
- recordingListDb->setValue("ORGDESCRIPTION", longdescription); // since 'LONGDESCRIPTION' already used for 'DESCRIPTION' :(
+ // if (!isEmpty(longdescription))
+ // recordingListDb->setValue("ORGDESCRIPTION", longdescription); // since 'LONGDESCRIPTION' already used for 'DESCRIPTION' :(
if (channel)
recordingListDb->setValue("CHANNELNAME", channel->Name());