From c1a66be258dc160a4eb9380e6990581d3c336df7 Mon Sep 17 00:00:00 2001 From: dinugr Date: Wed, 19 Aug 2020 12:58:38 +0700 Subject: [PATCH] fix song info always loading... --- Web/SongInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web/SongInfo.cs b/Web/SongInfo.cs index fc16e81..8db504b 100644 --- a/Web/SongInfo.cs +++ b/Web/SongInfo.cs @@ -108,8 +108,8 @@ public class SongInfoStream public event StatsReceived OnSongInfoReceived; public SongInfoResponseData currentInfo; - private const string JPOP_SOCKET_ADDR = "wss://listen.moe/gateway"; - private const string KPOP_SOCKET_ADDR = "wss://listen.moe/kpop/gateway"; + private const string JPOP_SOCKET_ADDR = "wss://listen.moe/gateway_v2"; + private const string KPOP_SOCKET_ADDR = "wss://listen.moe/kpop/gateway_v2"; private Thread heartbeatThread; private CancellationTokenSource cts;