diff options
| author | 2026-03-08 14:32:25 -0400 | |
|---|---|---|
| committer | 2026-03-08 14:32:25 -0400 | |
| commit | 2d572574f6bcece9001f2bf3001e3a1a5e7db5c4 (patch) | |
| tree | 93c6ac7705b1669c082586c49b3b79bf3e7b73ed /src/main.rs | |
| parent | clear chat on join (diff) | |
add display for motd on connect
Diffstat (limited to '')
| -rw-r--r-- | src/main.rs | 4 |
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, |
