diff -Nru kodi-pvr-teleboy-18.2.1/debian/changelog kodi-pvr-teleboy-18.2.2/debian/changelog --- kodi-pvr-teleboy-18.2.1/debian/changelog 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-teleboy-18.2.2/debian/changelog 2013-05-31 22:59:22.000000000 +0000 @@ -1,4 +1,4 @@ -kodi-pvr-teleboy (18.2.1-1~disco) disco; urgency=low +kodi-pvr-teleboy (18.2.2-1~disco) disco; urgency=low [ kodi ] * autogenerated dummy changelog diff -Nru kodi-pvr-teleboy-18.2.1/pvr.teleboy/addon.xml.in kodi-pvr-teleboy-18.2.2/pvr.teleboy/addon.xml.in --- kodi-pvr-teleboy-18.2.1/pvr.teleboy/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-teleboy-18.2.2/pvr.teleboy/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 @@ -1,6 +1,6 @@ @@ -26,6 +26,9 @@ The authors are in no way responsible for failed recordings, incorrect timers, wasted hours, or any other undesirable effects.. @PLATFORM@ +v18.2.2 + - Fix replay of currently running program + - Do not show cache parse error if file has been removed v18.2.1 - Set genre on (planned) recordings v18.2.0 diff -Nru kodi-pvr-teleboy-18.2.1/src/Cache.cpp kodi-pvr-teleboy-18.2.2/src/Cache.cpp --- kodi-pvr-teleboy-18.2.1/src/Cache.cpp 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-teleboy-18.2.2/src/Cache.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -38,7 +38,10 @@ doc.Parse(jsonString.c_str()); if (doc.GetParseError()) { - XBMC->Log(LOG_ERROR, "Parsing cache file [%s] failed.", cacheFile.c_str()); + if (XBMC->FileExists(cacheFile.c_str(), true)) + { + XBMC->Log(LOG_ERROR, "Parsing cache file [%s] failed.", cacheFile.c_str()); + } return false; } diff -Nru kodi-pvr-teleboy-18.2.1/src/TeleBoy.cpp kodi-pvr-teleboy-18.2.2/src/TeleBoy.cpp --- kodi-pvr-teleboy-18.2.1/src/TeleBoy.cpp 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-teleboy-18.2.2/src/TeleBoy.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -765,6 +765,6 @@ std::string TeleBoy::GetStreamParameters() { std::string params = enableDolby ? "&dolby=1" : ""; - params += "&streamformat=dash"; + params += "&https=1&streamformat=dash"; return params; }