Skip to content

Commit

Permalink
fix: ToggleSingle and ToggleConsume causing playback to stop (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
mierak authored Dec 26, 2024
1 parent d575182 commit d98244d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ All notable changes to this project will be documented in this file.

### Fixed

- `ToggleConsume` and `ToggleSingle` causing playback to stop

## [0.7.0] - 2024-12-24

### Added
Expand Down
2 changes: 0 additions & 2 deletions src/ui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,6 @@ impl<'ui> Ui<'ui> {
} else {
client.single(single.cycle())?;
}
client.stop()?;
Ok(())
});
}
Expand All @@ -431,7 +430,6 @@ impl<'ui> Ui<'ui> {
} else {
client.consume(consume.cycle())?;
}
client.stop()?;
Ok(())
});
}
Expand Down

0 comments on commit d98244d

Please sign in to comment.