From c7884a52e3d7239b293b3c9e94fca0fadc02162c Mon Sep 17 00:00:00 2001 From: Yuzu Date: Tue, 5 Jul 2022 21:45:55 +0700 Subject: [PATCH] Removed extra characters --- src/discord/UserInfo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/discord/UserInfo.ts b/src/discord/UserInfo.ts index 844dd9e..dbcb9e0 100644 --- a/src/discord/UserInfo.ts +++ b/src/discord/UserInfo.ts @@ -94,10 +94,10 @@ const EMBEDS = { let title = ''; switch (activity.type) { case ActivityType.Playing: - title = `'🕹 ${locale.__('userinfo.playing_x', { NAME: activity.name })}`; + title = `🕹 ${locale.__('userinfo.playing_x', { NAME: activity.name })}`; break; case ActivityType.Streaming: - title = `'🔴 ${locale.__('userinfo.streaming_x', { NAME: activity.name })}`; + title = `🔴 ${locale.__('userinfo.streaming_x', { NAME: activity.name })}`; break; case ActivityType.Listening: title = `🎵 ${locale.__('userinfo.listening_x', { NAME: activity.name })}`;