Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2020-01-24 16:06:03 +01:00
Родитель 4fac0dcc66
Коммит 92df34121d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4C614C6ED2CDE6DF
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -148,9 +148,9 @@ class DocumentService {
}
try {
$documentBaseFile = $this->appData->getFolder('documents')->getFile($file->getFileInfo()->getId());
$documentBaseFile = $this->appData->getFolder('documents')->getFile((string)$file->getFileInfo()->getId());
} catch (NotFoundException $e) {
$documentBaseFile = $this->appData->getFolder('documents')->newFile($file->getFileInfo()->getId());
$documentBaseFile = $this->appData->getFolder('documents')->newFile((string)$file->getFileInfo()->getId());
}
$documentBaseFile->putContent($file->fopen('r'));
@ -302,7 +302,7 @@ class DocumentService {
$this->documentMapper->delete($document);
try {
$this->appData->getFolder('documents')->getFile($documentId)->delete();
$this->appData->getFolder('documents')->getFile((string)$documentId)->delete();
} catch (NotFoundException $e) {
} catch (NotPermittedException $e) {
}