Merge pull request #21404 from nextcloud/bugfix/noid/flow-tag-parent-share

Flow: Include root folder for shared storages when fetching system tags
This commit is contained in:
Roeland Jago Douma 2020-06-15 16:31:50 +02:00 committed by GitHub
commit 2d262a1a03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@
namespace OCA\WorkflowEngine\Check;
use OCA\Files_Sharing\SharedStorage;
use OCA\WorkflowEngine\Entity\File;
use OCP\Files\Cache\ICache;
use OCP\Files\IHomeStorage;
@ -95,7 +96,7 @@ class FileSystemTags implements ICheck, IFileCheck {
*/
protected function getSystemTags() {
$cache = $this->storage->getCache();
$fileIds = $this->getFileIds($cache, $this->path, !$this->storage->instanceOfStorage(IHomeStorage::class));
$fileIds = $this->getFileIds($cache, $this->path, !$this->storage->instanceOfStorage(IHomeStorage::class) || $this->storage->instanceOfStorage(SharedStorage::class));
$systemTags = [];
foreach ($fileIds as $i => $fileId) {