Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
removed redundant closure
  • Loading branch information
wfinken committed Mar 2, 2026
commit ab32fa28ed58c480c32ced31e5174903ff1ef5e7
2 changes: 1 addition & 1 deletion src/infra/player/streaming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl RecoveringSink {
}

let make_sink = &self.make_sink;
match catch_unwind(AssertUnwindSafe(|| make_sink())) {
match catch_unwind(AssertUnwindSafe(make_sink)) {
Ok(sink) => {
self.inner = Some(sink);
Ok(())
Expand Down
Loading