From ce4ab4d6a395bbce37531225d506552d6a910f3f Mon Sep 17 00:00:00 2001 From: James Ravenscroft Date: Thu, 25 Dec 2014 11:39:05 +0000 Subject: Added unwrap calls around ident regex matches --- src/ident.rs | 6 +++--- 1 file 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() }) } } -- cgit v1.2.3