From 87ea69b4573f1ec9205dbab29d997916e7218fc0 Mon Sep 17 00:00:00 2001 From: Roderick van Domburg Date: Fri, 29 Jul 2022 21:30:27 +0200 Subject: [PATCH] Blacklist ap-gue1.spotify.com access point --- CHANGELOG.md | 2 +- core/src/apresolve.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da1cfcc..e6b5cfc 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 f6b89aa..dc3a5cc 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 {