Merge pull request #12864 from nextcloud/backport/12855/stable13

[stable13] Only execute query in propagateChange once
This commit is contained in:
Morris Jobke 2018-12-06 00:04:53 +01:00 committed by GitHub
commit 71ceecc1fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -97,9 +97,9 @@ class Propagator implements IPropagator {
->where($builder->expr()->eq('storage', $builder->createNamedParameter($storageId, IQueryBuilder::PARAM_INT)))
->andWhere($builder->expr()->in('path_hash', $hashParams))
->andWhere($builder->expr()->gt('size', $builder->expr()->literal(-1, IQueryBuilder::PARAM_INT)));
}
$builder->execute();
$builder->execute();
}
}
protected function getParents($path) {