Skip to content

Commit 87ea69b

Browse files
committed
Blacklist ap-gue1.spotify.com access point
1 parent 7bd9186 commit 87ea69b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- [playback] `pipe`: Better error handling
1313

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

1818
### Fixed

core/src/apresolve.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use url::Url;
88

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

1313
#[derive(Clone, Debug, Deserialize)]
1414
struct ApResolveData {

0 commit comments

Comments
 (0)