clippy fix
This commit is contained in:
parent
6361523d9b
commit
59fcbdc701
|
@ -35,8 +35,8 @@ impl fmt::Display for ContactExtension {
|
||||||
if let Some(ext_contact) = self.ext_contact {
|
if let Some(ext_contact) = self.ext_contact {
|
||||||
ext_str = {
|
ext_str = {
|
||||||
match ext_contact {
|
match ext_contact {
|
||||||
true => format!("extContact=Y"),
|
true => "extContact=Y".to_string(),
|
||||||
false => format!("extContact=N"),
|
false => "extContact=N".to_string(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue