We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b5298c commit ccbc95fCopy full SHA for ccbc95f
1 file changed
lib/Service/IdentifyMethod/AbstractIdentifyMethod.php
@@ -192,9 +192,11 @@ protected function throwIfFileNotFound(): void {
192
$storageUserId = $this->identifyService->getFileMapper()
193
->getStorageUserIdByUuid($fileInfo['uuid']);
194
$folderService = $this->identifyService->getFolderService();
195
+ $previousUserId = $folderService->getUserId();
196
$folderService->setUserId($storageUserId);
197
try {
198
$folderService->getFileByNodeId($fileInfo['nodeId']);
199
+ $folderService->setUserId($previousUserId);
200
} catch (NotFoundException) {
201
throw new LibresignException(json_encode([
202
'action' => JSActions::ACTION_DO_NOTHING,
0 commit comments