diff options
author | Martin Schirrmacher <vdr.zaphistory@schirrmacher.eu> | 2015-12-09 20:09:19 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.zaphistory@schirrmacher.eu> | 2015-12-09 20:09:19 +0100 |
commit | 484b48a61c841a72c12c3a347bbafd0b96826da3 (patch) | |
tree | 09d1e1825125d11d33529e275552563795d049e8 /zaphistorychannel.c | |
parent | 111b0cc69414d8025a66b3325a65d7286be87df7 (diff) | |
download | vdr-plugin-zaphistory-master.tar.gz vdr-plugin-zaphistory-master.tar.bz2 |
Diffstat (limited to 'zaphistorychannel.c')
-rw-r--r-- | zaphistorychannel.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zaphistorychannel.c b/zaphistorychannel.c index 1049f7e..dc730a0 100644 --- a/zaphistorychannel.c +++ b/zaphistorychannel.c @@ -21,7 +21,12 @@ cZapHistoryChannel::cZapHistoryChannel() { // Getter/Setter for wrapped cChannel const cChannel *cZapHistoryChannel::GetChannel() { +#if APIVERSNUM >= 20301 + LOCK_CHANNELS_READ; + return Channels->GetByChannelID(channelID); +#else return Channels.GetByChannelID(channelID); +#endif } tChannelID cZapHistoryChannel::GetChannelID() { |