From c2bed581bb0cffa49941e64d357048c2043b5db0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?David=20R=C3=BCtti?= <d_ruetti@hotmail.com>
Date: Sat, 24 Dec 2011 21:41:27 +0100
Subject: [PATCH] Fixed LSTR for VDR >= 1.7.21 when executing recording
commands
---
HISTORY | 1 +
vdradmind.pl | 6 +++++-
2 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/vdradmind.pl b/vdradmind.pl
index 60fe3fa..1299565 100755
--- a/vdradmind.pl
+++ b/vdradmind.pl
@@ -6438,7 +6438,11 @@ sub recRunCmd {
my ($day, $month, $hour, $minute, $newtitle, $c, $folder);
for (SendCMD("lstr")) {
- ($rec_id, $date, $time, $title) = split(/ +/, $_, 4);
+ if ($FEATURES{VDRVERSION} < 10721) {
+ ($rec_id, $date, $time, $title) = split(/ +/, $_, 4);
+ } else {
+ ($rec_id, $date, $time, undef, $title) = split(/ +/, $_, 5);
+ }
last if ($rec_id == $id);
}
--
1.7.7.3