Skip to content

Commit

Permalink
Merge pull request nextcloud#6393 from nextcloud/bugfix/fix-random-cr…
Browse files Browse the repository at this point in the history
…ash-lscoljob

Bugfix. Random crash in LsColJob after recent changes.
  • Loading branch information
mgallien authored Jan 30, 2024
2 parents 068979a + 5cdeba8 commit a6e683f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/libsync/networkjobs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

/*********************************************************************************************/
Expand Down

0 comments on commit a6e683f

Please sign in to comment.