From 29b07f070c69756a1c6d4a59a9367ee2adb55bc6 Mon Sep 17 00:00:00 2001 From: werwolf2303 Date: Fri, 8 Aug 2025 15:34:31 +0200 Subject: [PATCH] Fix status code 500 in spclient requests --- lib/src/main/java/xyz/gianlu/librespot/core/ApResolver.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/main/java/xyz/gianlu/librespot/core/ApResolver.java b/lib/src/main/java/xyz/gianlu/librespot/core/ApResolver.java index ad80f35e..0740bd66 100644 --- a/lib/src/main/java/xyz/gianlu/librespot/core/ApResolver.java +++ b/lib/src/main/java/xyz/gianlu/librespot/core/ApResolver.java @@ -128,7 +128,8 @@ public String getRandomDealer() { @NotNull public String getRandomSpclient() { - return getRandomOf("spclient"); + return "spclient.wg.spotify.com:443"; + //return getRandomOf("spclient"); } @NotNull