fix: windows hot reload (#2687)

This commit is contained in:
Miles Murgaw 2024-07-23 16:18:31 -04:00 committed by GitHub
parent 117c9d18ae
commit 9ca5396343
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,7 +62,7 @@ impl Watcher {
match e.kind {
// An event emitted when the metadata of a file or folder is changed.
EventKind::Modify(ModifyKind::Data(_)) |
EventKind::Modify(ModifyKind::Data(_) | ModifyKind::Any) |
EventKind::Create(_) |
EventKind::Remove(_) => {
_ = tx.unbounded_send(e);
@ -139,6 +139,7 @@ impl Watcher {
for event in self.queued_events.drain(..) {
// We only care about modify/crate/delete events
match event.kind {
EventKind::Modify(ModifyKind::Any) => {}
EventKind::Modify(ModifyKind::Data(_)) => {}
EventKind::Modify(ModifyKind::Name(_)) => {}
EventKind::Create(_) => {}