Skip to content

Commit

Permalink
Blacklist ap-gue1.spotify.com access point
Browse files Browse the repository at this point in the history
  • Loading branch information
roderickvd committed Jul 29, 2022
1 parent 7bd9186 commit 87ea69b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [playback] `pipe`: Better error handling

### Added
- [core] `apresolve`: Blacklist ap-gew4 access point that causes channel errors
- [core] `apresolve`: Blacklist ap-gew4 and ap-gue1 access points that cause channel errors
- [playback] `pipe`: Implement stop

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion core/src/apresolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use url::Url;

const APRESOLVE_ENDPOINT: &str = "http://apresolve.spotify.com:80";
const AP_FALLBACK: &str = "ap.spotify.com:443";
const AP_BLACKLIST: [&str; 1] = ["ap-gew4.spotify.com"];
const AP_BLACKLIST: [&str; 2] = ["ap-gew4.spotify.com", "ap-gue1.spotify.com"];

#[derive(Clone, Debug, Deserialize)]
struct ApResolveData {
Expand Down

0 comments on commit 87ea69b

Please sign in to comment.