Skip to content

Commit

Permalink
Merge pull request #347 from flubshi/omega_fix_replay
Browse files Browse the repository at this point in the history
Omega fix replay - 21.8.6
  • Loading branch information
flubshi authored Jul 22, 2024
2 parents b18effd + 66df08a commit f3dba7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions 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="21.8.5"
version="21.8.6"
name="waipu.tv PVR Client"
provider-name="flubshi">
<requires>@ADDON_DEPENDS@
Expand All @@ -26,9 +26,7 @@
<screenshot>resources/screenshots/screenshot-02.jpg</screenshot>
</assets>
<news>
- Improve code quality based on cppcheck
- Bump rapidjson dependency
- Update translations
- Fix replay
</news>
<summary lang="da_DK">waipu.tv PVR-klient</summary>
<summary lang="de_DE">waipu.tv PVR Client</summary>
Expand Down
3 changes: 2 additions & 1 deletion src/WaipuData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,8 @@ std::string WaipuData::GetEPGTagURL(const kodi::addon::PVREPGTag& tag, const std
// fallback to replay playback
kodi::Log(ADDON_LOG_DEBUG,
"[play epg tag] streamUrlProvider not found -> fallback to replay!");
return GetChannelStreamURL(tag.GetUniqueChannelId(), protocol, startTime);
return GetChannelStreamURL(tag.GetUniqueChannelId(), protocol,
std::to_string(tag.GetStartTime()));
}

std::string url = epgDoc["result"][0]["streamUrlProvider"].GetString();
Expand Down

0 comments on commit f3dba7d

Please sign in to comment.