Merge pull request #1 from BakerNet/fix/notify-from-trigger

Trigger trait changed to Notify in 0.7-beta5
This commit is contained in:
Adam 2024-09-08 22:44:13 -04:00 committed by GitHub
commit 819ecd4d86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -350,7 +350,7 @@ where
let ev_key = ev.key();
// Key matches or all keys deleted (None)
if ev_key == Some(check_key.clone()) || ev_key.is_none() {
storage_notify.trigger()
storage_notify.notify()
}
});
// Listen to internal storage events
@ -361,7 +361,7 @@ where
{
move |ev: web_sys::CustomEvent| {
if Some(check_key.clone()) == ev.detail().as_string() {
custom_notify.trigger()
custom_notify.notify()
}
}
},
@ -378,7 +378,7 @@ where
.remove_item(&key)
.map_err(UseStorageError::RemoveItemFailed);
let _ = handle_error(&on_error, result);
notify.trigger();
notify.notify();
dispatch_storage_event();
});
}