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.
2 parents 46826a1 + d802dbd commit fca59e3Copy full SHA for fca59e3
1 file changed
lib/Service/IdentifyMethod/AbstractIdentifyMethod.php
@@ -174,9 +174,11 @@ protected function throwIfFileNotFound(): void {
174
$storageUserId = $this->identifyService->getFileMapper()
175
->getStorageUserIdByUuid($fileInfo['uuid']);
176
$folderService = $this->identifyService->getFolderService();
177
+ $previousUserId = $folderService->getUserId();
178
$folderService->setUserId($storageUserId);
179
try {
180
$folderService->getFileByNodeId($fileInfo['nodeId']);
181
+ $folderService->setUserId($previousUserId);
182
} catch (NotFoundException) {
183
throw new LibresignException(json_encode([
184
'action' => JSActions::ACTION_DO_NOTHING,
0 commit comments