From fb773da1990ff32bba2dc5d468ebb3c8121be73a Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Mon, 7 Oct 2024 21:23:39 +0200 Subject: [PATCH] Fixed an issue where invalid popup notifications were sometimes shown after a download error message had been displayed in the theme downloader --- es-app/src/guis/GuiThemeDownloader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/es-app/src/guis/GuiThemeDownloader.cpp b/es-app/src/guis/GuiThemeDownloader.cpp index e14e86ae8..45bb60b69 100644 --- a/es-app/src/guis/GuiThemeDownloader.cpp +++ b/es-app/src/guis/GuiThemeDownloader.cpp @@ -1074,6 +1074,7 @@ void GuiThemeDownloader::update(int deltaTime) mWindow->pushGui(new GuiMsgBox( getHelpStyle(), errorMessage, _("OK"), [] { return; }, "", nullptr, "", nullptr, nullptr, true)); + mRepositoryError = RepositoryError::NO_REPO_ERROR; mMessage = ""; getHelpPrompts(); }