diff -Nru kodi-pvr-zattoo-18.1.13/debian/changelog kodi-pvr-zattoo-18.1.14/debian/changelog --- kodi-pvr-zattoo-18.1.13/debian/changelog 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-zattoo-18.1.14/debian/changelog 2013-05-31 22:59:22.000000000 +0000 @@ -1,4 +1,4 @@ -kodi-pvr-zattoo (18.1.13-1~eoan) eoan; urgency=low +kodi-pvr-zattoo (18.1.14-1~eoan) eoan; urgency=low [ kodi ] * autogenerated dummy changelog diff -Nru kodi-pvr-zattoo-18.1.13/pvr.zattoo/addon.xml.in kodi-pvr-zattoo-18.1.14/pvr.zattoo/addon.xml.in --- kodi-pvr-zattoo-18.1.13/pvr.zattoo/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-zattoo-18.1.14/pvr.zattoo/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 @@ -1,6 +1,6 @@ @@ -26,6 +26,8 @@ The authors are in no way responsible for failed recordings, incorrect timers, wasted hours, or any other undesirable effects.. @PLATFORM@ +v18.1.14 + - Do not show cache parse error if file has been removed v18.1.13 - Fix login with credentials containing exclamation mark (!) in password v18.1.12 diff -Nru kodi-pvr-zattoo-18.1.13/src/Cache.cpp kodi-pvr-zattoo-18.1.14/src/Cache.cpp --- kodi-pvr-zattoo-18.1.13/src/Cache.cpp 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-zattoo-18.1.14/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; }