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

fix: notify from trigger (0.7 beta change)
This commit is contained in:
Marc-Stefan Cassola 2024-09-09 16:05:24 +01:00 committed by GitHub
commit e28c480046
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();
});
}