mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
LibWeb/IDB: Make some debug messages more descriptive
This commit is contained in:
Notes:
github-actions[bot]
2025-04-11 01:13:41 +00:00
Author: https://github.com/stelar7 Commit: https://github.com/LadybirdBrowser/ladybird/commit/aa4e303b9f7 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4306 Reviewed-by: https://github.com/ADKaster ✅
@@ -176,7 +176,7 @@ WebIDL::ExceptionOr<void> IDBDatabase::delete_object_store(String const& name)
|
||||
// 4. Let store be the object store named name in database, or throw a "NotFoundError" DOMException if none.
|
||||
auto store = database->object_store_with_name(name);
|
||||
if (!store)
|
||||
return WebIDL::NotFoundError::create(realm, "Object store not found"_string);
|
||||
return WebIDL::NotFoundError::create(realm, "Object store not found while trying to delete"_string);
|
||||
|
||||
// 5. Remove store from this's object store set.
|
||||
this->remove_from_object_store_set(*store);
|
||||
|
||||
Reference in New Issue
Block a user