Skip to content

Commit

Permalink
Merge pull request #366 from flubshi/omega_error_message
Browse files Browse the repository at this point in the history
backport: Show error message when credentials are invalid
  • Loading branch information
flubshi authored Dec 13, 2024
2 parents 69f43e1 + e968c58 commit 69a62e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 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.7"
version="21.8.8"
name="waipu.tv PVR Client"
provider-name="flubshi">
<requires>@ADDON_DEPENDS@
Expand All @@ -26,7 +26,7 @@
<screenshot>resources/screenshots/screenshot-02.jpg</screenshot>
</assets>
<news>
- Fix timers import on broken timer entry
- Show error message when credentials are invalid ( contributed by @Rainer-Keller )
</news>
<summary lang="da_DK">waipu.tv PVR-klient</summary>
<summary lang="de_DE">waipu.tv PVR Client</summary>
Expand Down
2 changes: 2 additions & 0 deletions src/WaipuData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ void WaipuData::LoginThread()
}

continue;
} else if (m_login_status == WAIPU_LOGIN_STATUS::INVALID_CREDENTIALS) {
kodi::QueueNotification(QUEUE_ERROR, "", kodi::addon::GetLocalizedString(30030));
}

kodi::addon::CInstancePVRClient::ConnectionStateChange("Connecting",
Expand Down

0 comments on commit 69a62e7

Please sign in to comment.