Merge pull request #6396 from nextcloud/backport/6393/stable-3.12

[stable-3.12] Bugfix. Random crash in LsColJob after recent changes.
This commit is contained in:
Matthieu Gallien 2024-01-30 10:25:17 +01:00 committed by GitHub
commit fbcbf7a634
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -423,7 +423,8 @@ bool LsColJob::finished()
this->deleteLater();
return true;
// fix crash on random deletion mess in the parent class, we never discard this job but always delete it inside this method
return false;
}
/*********************************************************************************************/