From 86ad4ed6c1fa0a085c80dea34f69e8ceb2bbc94b Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 8 Mar 2024 18:50:50 +0100 Subject: [PATCH] Qt: check for updates if the update message is empty This happens for example if the user canceled the earlier check after the update was already known, leaving us in a somewhat dirty state. --- rpcs3/rpcs3qt/update_manager.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpcs3/rpcs3qt/update_manager.cpp b/rpcs3/rpcs3qt/update_manager.cpp index 249748d2f9..8a785f55a9 100644 --- a/rpcs3/rpcs3qt/update_manager.cpp +++ b/rpcs3/rpcs3qt/update_manager.cpp @@ -307,7 +307,9 @@ void update_manager::update(bool auto_accept) { if (m_update_message.isEmpty()) { + // This can happen if we abort the check_for_updates download. Just check again in this case. m_downloader->close_progress_dialog(); + check_for_updates(false, false, false, m_parent); return; }