mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-07-05 13:15:59 +08:00
fix: crash when installation complete if MainWindow is closed
Installation finished signal is triggered in child thread, which may cause crash when handling in AppInfoPage slot Log: use Qt::ConnectionType::QueuedConnection when connecting with installation finished signal
This commit is contained in:
parent
5bd6ad9399
commit
29ddef300f
@ -287,8 +287,10 @@ void AppIntoPage::setDownloadWidget(DownloadListWidget *w)
|
|||||||
}
|
}
|
||||||
|
|
||||||
dw = w;
|
dw = w;
|
||||||
connect(w, &DownloadListWidget::downloadFinished, [=]()
|
connect(w, &DownloadListWidget::downloadFinished, this, [=]() {
|
||||||
{ isDownloading(SparkAPI::getServerUrl() + SparkAPI::getArchDir() + spk.path() + "/" + info["Filename"].toString()); });
|
isDownloading(SparkAPI::getServerUrl() + SparkAPI::getArchDir() + spk.path() + "/" + info["Filename"].toString());
|
||||||
|
},
|
||||||
|
Qt::QueuedConnection);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AppIntoPage::initUI()
|
void AppIntoPage::initUI()
|
||||||
@ -486,7 +488,10 @@ void AppIntoPage::on_downloadButton_clicked()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
connect(item, &DownloadItem::finished, [=]() { isDownloading(downloadUrl); });
|
connect(item, &DownloadItem::finished, this, [=]() {
|
||||||
|
isDownloading(downloadUrl);
|
||||||
|
},
|
||||||
|
Qt::QueuedConnection);
|
||||||
|
|
||||||
item->install(0);
|
item->install(0);
|
||||||
isDownloading(downloadUrl);
|
isDownloading(downloadUrl);
|
||||||
@ -507,7 +512,10 @@ void AppIntoPage::on_downloadButton_clicked()
|
|||||||
item->reinstall = true;
|
item->reinstall = true;
|
||||||
}
|
}
|
||||||
ui->downloadButton->setEnabled(false);
|
ui->downloadButton->setEnabled(false);
|
||||||
connect(item, &DownloadItem::finished, [=]() { isDownloading(downloadUrl); });
|
connect(item, &DownloadItem::finished, this, [=]() {
|
||||||
|
isDownloading(downloadUrl);
|
||||||
|
},
|
||||||
|
Qt::QueuedConnection);
|
||||||
|
|
||||||
isDownloading(downloadUrl);
|
isDownloading(downloadUrl);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user