summaryrefslogtreecommitdiff
path: root/media-plugins/vdr-devstatus/files/vdr-devstatus-0.4.1-recordingfound.patch
blob: 984210481dc681276ed871d44cd48e4d1ae8cee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Index: b/devstatus.c
===================================================================
--- a/devstatus.c
+++ b/devstatus.c
@@ -351,7 +351,11 @@
                     recordingFound = recording;
             if (!recordingFound)
                 return osContinue;
-            cReplayControl::SetRecording(recordingFound->FileName(), recordingFound->Title());
+            #if VDRVERSNUM < 10728
+               cReplayControl::SetRecording(recordingFound->FileName(), recordingFound->Title());
+            #else
+               cReplayControl::SetRecording(recordingFound->FileName());
+            #endif
             return osReplay;
     }