Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
No throwing Exception
  • Loading branch information
fogelito committed Jan 2, 2025
commit 06a5876f35e86b48b4883f26651b27069d6e51e4
5 changes: 3 additions & 2 deletions src/Appwrite/Platform/Workers/Databases.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,8 +284,9 @@ private function deleteAttribute(Document $database, Document $collection, Docum
$dbForProject->deleteDocument('attributes', $relatedAttribute->getId());
}

throw $e;

/**
* No throwing Exception
*/
} catch (\Throwable $e) {
Console::error($e->getMessage());

Expand Down
Loading