diff options
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/recording.c b/recording.c index e572f2b..2de582e 100644 --- a/recording.c +++ b/recording.c @@ -481,6 +481,23 @@ int cUpdate::updateRecordingTable(int fullReload) recordingListDb->store(); } + // check recording image table + + if (!recordingListDb->getValue("IMGID")->isEmpty()) + { + recordingImagesDb->setValue("IMGID", recordingListDb->getStrValue("IMGID")); + recordingImagesDb->setValue("LFN", 1); + + if (!recordingImagesDb->find()) + { + // we don't have a image, check filesystem + + + } + + recordingImagesDb->reset(); + } + count++; recordingListDb->reset(); } |