mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Blacklist ap-gue1.spotify.com access point
This commit is contained in:
parent
7bd9186e94
commit
87ea69b457
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- [playback] `pipe`: Better error handling
|
- [playback] `pipe`: Better error handling
|
||||||
|
|
||||||
### Added
|
### 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
|
- [playback] `pipe`: Implement stop
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -8,7 +8,7 @@ use url::Url;
|
||||||
|
|
||||||
const APRESOLVE_ENDPOINT: &str = "http://apresolve.spotify.com:80";
|
const APRESOLVE_ENDPOINT: &str = "http://apresolve.spotify.com:80";
|
||||||
const AP_FALLBACK: &str = "ap.spotify.com:443";
|
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)]
|
#[derive(Clone, Debug, Deserialize)]
|
||||||
struct ApResolveData {
|
struct ApResolveData {
|
||||||
|
|
Loading…
Reference in a new issue