mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 09:30:13 +03:00
Fix compilation warning
propagateuploadng.cpp:500:10: warning: lambda capture 'this' is not used [-Wunused-lambda-capture]
This commit is contained in:
parent
3556482bce
commit
14ff3534a8
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ void PropagateUploadFileNG::abort(PropagatorJob::AbortType abortType)
|
|||
{
|
||||
abortNetworkJobs(
|
||||
abortType,
|
||||
[this, abortType](AbstractNetworkJob *job) {
|
||||
[abortType](AbstractNetworkJob *job) {
|
||||
return abortType != AbortType::Asynchronous || !qobject_cast<MoveJob *>(job);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue