aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index db1922f..fc373d6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -226,6 +226,10 @@ fn handle_irc_event(event: IrcEvent, app: &mut AppState) {
}
}
+ IrcEvent::SysMessage { text } => {
+ app.push_system(text.as_str());
+ }
+
IrcEvent::Parted {
channel,
nick,