1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00

Update app/controllers/api/storage.php

Co-authored-by: Eldad A. Fux <eldad.fux@gmail.com>
This commit is contained in:
Damodar Lohani 2021-06-17 14:12:40 +05:45 committed by GitHub
parent db85577f4f
commit abdbdeef35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -219,7 +219,7 @@ App::delete('/v1/storage/buckets/:bucketId')
$bucket = $dbForInternal->getDocument('buckets', $bucketId);
if (empty($bucket->getId())) {
if ($bucket->isEmpty()) {
throw new Exception('Bucket not found', 404);
}