Skip to content

Commit

Permalink
Fix crash while downloading favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
ADD-SP authored and droidmonkey committed Nov 14, 2021
1 parent c37e2d3 commit e5065a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/IconDownloaderDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ void IconDownloaderDialog::updateTable(const QString& url, const QString& messag
void IconDownloaderDialog::abortDownloads()
{
for (auto* downloader : m_activeDownloaders) {
delete downloader;
downloader->deleteLater();
}
m_activeDownloaders.clear();
updateProgressBar();
Expand Down

0 comments on commit e5065a0

Please sign in to comment.