diff -Nru kodi-pvr-zattoo-20.3.3/debian/changelog kodi-pvr-zattoo-20.3.4/debian/changelog --- kodi-pvr-zattoo-20.3.3/debian/changelog 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-zattoo-20.3.4/debian/changelog 2013-05-31 22:59:22.000000000 +0000 @@ -1,4 +1,4 @@ -kodi-pvr-zattoo (6:20.3.3-1~focal) focal; urgency=low +kodi-pvr-zattoo (6:20.3.4-1~focal) focal; urgency=low [ kodi ] * autogenerated dummy changelog diff -Nru kodi-pvr-zattoo-20.3.3/pvr.zattoo/addon.xml.in kodi-pvr-zattoo-20.3.4/pvr.zattoo/addon.xml.in --- kodi-pvr-zattoo-20.3.3/pvr.zattoo/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-zattoo-20.3.4/pvr.zattoo/addon.xml.in 2013-05-31 22:59:22.000000000 +0000 @@ -1,6 +1,6 @@ diff -Nru kodi-pvr-zattoo-20.3.3/pvr.zattoo/changelog.txt kodi-pvr-zattoo-20.3.4/pvr.zattoo/changelog.txt --- kodi-pvr-zattoo-20.3.3/pvr.zattoo/changelog.txt 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-zattoo-20.3.4/pvr.zattoo/changelog.txt 2013-05-31 22:59:22.000000000 +0000 @@ -1,3 +1,5 @@ +v20.3.4 +- Show error if login fails v20.3.3 - Fix segfault during addon creation v20.3.2 diff -Nru kodi-pvr-zattoo-20.3.3/src/Session.cpp kodi-pvr-zattoo-20.3.4/src/Session.cpp --- kodi-pvr-zattoo-20.3.3/src/Session.cpp 2013-05-31 22:59:22.000000000 +0000 +++ kodi-pvr-zattoo-20.3.4/src/Session.cpp 2013-05-31 22:59:22.000000000 +0000 @@ -70,6 +70,8 @@ else { kodi::Log(ADDON_LOG_ERROR, "Login failed"); + m_nextLoginAttempt = std::time(0) + 3600; + kodi::QueueNotification(QUEUE_ERROR, "", kodi::addon::GetLocalizedString(30201)); } } }