1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-06-08 06:57:46 +00:00

Actually emit finishedUpdating signal

This commit is contained in:
Joshua Goins 2023-07-31 19:23:12 -04:00
parent 919e37d483
commit 2fe5dbf5a9

View file

@ -41,7 +41,7 @@ void AssetUpdater::update()
{
// non-dalamud users can bypass this process since it's not needed
if (!m_profile.dalamudEnabled()) {
finishedUpdating();
Q_EMIT finishedUpdating();
return;
}
@ -173,7 +173,7 @@ void AssetUpdater::checkIfFinished()
if (needsRuntimeInstall || needsDalamudInstall) {
beginInstall();
} else {
finishedUpdating();
Q_EMIT finishedUpdating();
}
}
}