src/plugins/ping.rs 🔗
@@ -51,7 +51,7 @@ impl PingPlugin {
});
}
}
- Propagation::Continue
+ Propagation::Stop
}
fn reply_ping(&self, ping: &PingEvent) -> Propagation {
Emmanuel Gil Peyrot created
src/plugins/ping.rs | 2 +-
src/plugins/stanza.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
@@ -51,7 +51,7 @@ impl PingPlugin {
});
}
}
- Propagation::Continue
+ Propagation::Stop
}
fn reply_ping(&self, ping: &PingEvent) -> Propagation {
@@ -40,7 +40,7 @@ impl StanzaPlugin {
self.proxy.dispatch(iq);
}
- Propagation::Continue
+ Propagation::Stop
}
}