From 50677ec0496f70d7e0e69d9c123484b9c3ecc7f3 Mon Sep 17 00:00:00 2001 From: Liam <67254223+RealFascinated@users.noreply.github.com> Date: Sat, 29 Oct 2022 15:39:03 +0100 Subject: [PATCH] Fix song not showing author name --- src/helpers/websocketClient.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/helpers/websocketClient.ts b/src/helpers/websocketClient.ts index 1b4b492..44034f8 100644 --- a/src/helpers/websocketClient.ts +++ b/src/helpers/websocketClient.ts @@ -106,6 +106,7 @@ const handlers: any = { characteristic, songName, songSubName, + levelAuthorName, length, } = data.status.beatmap; @@ -116,7 +117,7 @@ const handlers: any = { difficultyEnum, characteristic, songName, - songSubName, + songSubName || levelAuthorName, length ); },