Skip to content

Commit

Permalink
fix missing match path
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractiveNord committed Mar 17, 2024
1 parent 2570e64 commit 55c50c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/message/commands/notice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl TryFrom<IRCMessage> for NoticeMessage {
message_id: {
match source.try_get_optional_nonempty_tag_value("msg-id")? {
Some(message_id) => Some(FastStr::from_ref(message_id)),
None => todo!(),
None => None,
}
},
source,
Expand Down

0 comments on commit 55c50c3

Please sign in to comment.