chore: run fmt

This commit is contained in:
Jake Stanger
2022-10-16 16:44:32 +01:00
parent 493df6bb49
commit be0f4c6366
2 changed files with 4 additions and 3 deletions

View File

@@ -59,8 +59,9 @@ impl MpdClient {
while let Some(change) = state_changes.next().await {
debug!("Received state change: {:?}", change);
if let ConnectionEvent::SubsystemChange(Subsystem::Player | Subsystem::Queue | Subsystem::Mixer) =
change
if let ConnectionEvent::SubsystemChange(
Subsystem::Player | Subsystem::Queue | Subsystem::Mixer,
) = change
{
tx2.send(())?;
}

View File

@@ -227,7 +227,7 @@ impl Module<Button> for MpdModule {
button,
orientation,
)))
.expect("Failed to send MPD popup open event");
.expect("Failed to send MPD popup open event");
});
}