diff --git a/CHANGELOG.md b/CHANGELOG.md index da1cfccb..e6b5cfc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/core/src/apresolve.rs b/core/src/apresolve.rs index f6b89aad..dc3a5cce 100644 --- a/core/src/apresolve.rs +++ b/core/src/apresolve.rs @@ -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 {