mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-07-09 17:25:18 -06:00
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.
This commit is contained in:
parent
3056a4db83
commit
86ad4ed6c1
@ -307,7 +307,9 @@ void update_manager::update(bool auto_accept)
|
|||||||
{
|
{
|
||||||
if (m_update_message.isEmpty())
|
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();
|
m_downloader->close_progress_dialog();
|
||||||
|
check_for_updates(false, false, false, m_parent);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user