Browse Source

Simplified match

master
Julio Biason 4 years ago
parent
commit
ea31715edf
  1. 10
      src/eventlist/event.rs

10
src/eventlist/event.rs

@ -131,10 +131,12 @@ impl Event {
EventDateType::AllDay(_) if eta.num_minutes() > 0 => { EventDateType::AllDay(_) if eta.num_minutes() > 0 => {
Some(format!("{}d", eta.num_days())) Some(format!("{}d", eta.num_days()))
} }
EventDateType::AtTime(_, _) if eta.num_minutes() > 0 => match eta.num_days() { EventDateType::AtTime(_, _) if eta.num_days() > 0 => {
0 => Some(format!("{}h", eta.num_hours())), Some(format!("{}d {}h", eta.num_days(), eta.num_hours()))
_ => Some(format!("{}d {}h", eta.num_days(), eta.num_hours())), }
}, EventDateType::AtTime(_, _) if eta.num_hours() > 0 => {
Some(format!("{}h", eta.num_hours()))
}
_ => None, _ => None,
} }
} }

Loading…
Cancel
Save