Completed refactor safeAddStuf -> addStuf in photosControler

Signed-off-by: Arne Hamann <kontakt+github@arne.email>
This commit is contained in:
Arne Hamann 2020-01-22 10:58:00 +01:00
Родитель 4768f5ee5f
Коммит 91c5f83868
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 280879CB5E2A960B
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -121,13 +121,13 @@ class FileHooks {
//$sourceUserId = $params['uidOwner'];
$targetUserId = $params['shareWith'];
$fileId = $params['fileSource']; // or itemSource
$this->photofilesService->safeAddByFileIdUserId($fileId, $targetUserId);
$this->photofilesService->addByFileIdUserId($fileId, $targetUserId);
$this->tracksService->safeAddByFileIdUserId($fileId, $targetUserId);
}
else if ($params['itemType'] === 'folder') {
$targetUserId = $params['shareWith'];
$dirId = $params['fileSource']; // or itemSource
$this->photofilesService->safeAddByFolderIdUserId($dirId, $targetUserId);
$this->photofilesService->addByFolderIdUserId($dirId, $targetUserId);
$this->tracksService->safeAddByFolderIdUserId($dirId, $targetUserId);
}
}