fix: better object store write error propagation

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/54297/head
Robin Appelman 2025-07-30 14:56:41 +07:00
parent d1af0f34a2
commit 05e64418a7
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB
1 changed files with 1 additions and 1 deletions

@ -550,7 +550,7 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common implements IChunkedFil
]
);
}
throw $ex; // make this bubble up
throw new GenericFileException('Error while writing stream to object store', 0, $ex);
}
if ($exists) {