Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- [main] Fixed `--volume-ctrl fixed` not disabling volume control
- [core] Fixed missing proxy forwarding to the dealer

## [0.8.0] - 2025-11-10

Expand Down
4 changes: 3 additions & 1 deletion core/src/dealer/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ impl DealerManager {
debug!("Launching dealer");

let session = self.session();

let proxy = session.config().proxy.clone();
// the url has to be a function that can retrieve a new url,
// otherwise when we later try to reconnect with the initial url/token
// and the token is expired we will just get 401 error
Expand All @@ -156,7 +158,7 @@ impl DealerManager {
let dealer = self
.lock(move |inner| inner.builder.take())
.ok_or(DealerError::BuilderNotAvailable)?
.launch(get_url, None)
.launch(get_url, proxy)
.await
.map_err(DealerError::LaunchFailure)?;

Expand Down