diff --git a/pvr.waipu/addon.xml.in b/pvr.waipu/addon.xml.in index 951ef56..2e201a2 100644 --- a/pvr.waipu/addon.xml.in +++ b/pvr.waipu/addon.xml.in @@ -1,7 +1,7 @@ @ADDON_DEPENDS@ @@ -26,9 +26,7 @@ resources/screenshots/screenshot-02.jpg -- Improve code quality based on cppcheck -- Bump rapidjson dependency -- Update translations +- Fix replay waipu.tv PVR-klient waipu.tv PVR Client diff --git a/src/WaipuData.cpp b/src/WaipuData.cpp index a6785a0..8e91df5 100644 --- a/src/WaipuData.cpp +++ b/src/WaipuData.cpp @@ -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();