diff options
Diffstat (limited to 'src/ident.rs')
-rw-r--r-- | src/ident.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ident.rs b/src/ident.rs index 069e186..3089af4 100644 --- a/src/ident.rs +++ b/src/ident.rs @@ -16,9 +16,9 @@ impl Ident { None => return None }; Some(Ident { - nickname: c.at(1).into_string(), - user: c.at(2).into_string(), - host: c.at(3).into_string() + nickname: c.at(1).unwrap_or("").into_string(), + user: c.at(2).unwrap_or("").into_string(), + host: c.at(3).unwrap_or("").into_string() }) } } |