fix: make share recursion error more informative

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2025-10-03 15:50:43 +02:00
parent ae89c60e9e
commit af907388d0
No known key found for this signature in database
GPG key ID: 42B69D8A64526EFB

View file

@ -135,8 +135,9 @@ class SharedStorage extends Jail implements LegacyISharedStorage, ISharedStorage
// this is probably because some code path has caused recursion during the share setup
// we setup a "failed storage" so `getWrapperStorage` doesn't return null.
// If the share setup completes after this the "failed storage" will be overwritten by the correct one
$this->logger->warning('Possible share setup recursion detected');
$this->storage = new FailedStorage(['exception' => new \Exception('Possible share setup recursion detected')]);
$ex = new \Exception('Possible share setup recursion detected for share ' . $this->superShare->getId());
$this->logger->warning($ex->getMessage(), ['exception' => $ex, 'app' => 'files_sharing']);
$this->storage = new FailedStorage(['exception' => $ex]);
$this->cache = new FailedCache();
$this->rootPath = '';
}