mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb/IDB: Make some debug messages more descriptive
This commit is contained in:
parent
fc06d088c3
commit
aa4e303b9f
Notes:
github-actions[bot]
2025-04-11 01:13:41 +00:00
Author: https://github.com/stelar7
Commit: aa4e303b9f
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4306
Reviewed-by: https://github.com/ADKaster ✅
2 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@ WebIDL::ExceptionOr<GC::Ref<IDBObjectStore>> IDBTransaction::object_store(String
|
|||
// 2. Let store be the object store named name in this's scope, or throw a "NotFoundError" DOMException if none.
|
||||
auto store = object_store_named(name);
|
||||
if (!store)
|
||||
return WebIDL::NotFoundError::create(realm, "Object store not found"_string);
|
||||
return WebIDL::NotFoundError::create(realm, "Object store not found in transactions scope"_string);
|
||||
|
||||
// 3. Return an object store handle associated with store and this.
|
||||
return IDBObjectStore::create(realm, *store, *this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue