Skip to content

Commit

Permalink
v22.1.0: PVR Add-on API v9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ksooo committed Aug 15, 2024
1 parent 5d0895e commit fdc8c72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pvr.waipu/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.waipu"
version="22.0.0"
version="22.1.0"
name="waipu.tv PVR Client"
provider-name="flubshi">
<requires>@ADDON_DEPENDS@
Expand Down
2 changes: 1 addition & 1 deletion src/WaipuData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ PVR_ERROR WaipuData::GetChannels(bool radio, kodi::addon::PVRChannelsResultSet&
}

PVR_ERROR WaipuData::GetChannelStreamProperties(
const kodi::addon::PVRChannel& channel, std::vector<kodi::addon::PVRStreamProperty>& properties)
const kodi::addon::PVRChannel& channel, PVR_SOURCE source, std::vector<kodi::addon::PVRStreamProperty>& properties)
{
LoadChannelData();
PVR_ERROR ret = PVR_ERROR_FAILED;
Expand Down
1 change: 1 addition & 0 deletions src/WaipuData.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ class ATTR_DLL_LOCAL WaipuData : public kodi::addon::CAddonBase,
kodi::addon::PVRChannelGroupMembersResultSet& results) override;
PVR_ERROR GetChannelStreamProperties(
const kodi::addon::PVRChannel& channel,
PVR_SOURCE source,
std::vector<kodi::addon::PVRStreamProperty>& properties) override;

PVR_ERROR GetEPGForChannel(int channelUid,
Expand Down

0 comments on commit fdc8c72

Please sign in to comment.