aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleFM.ts
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2024-03-07 19:07:36 +0100
committerstonedDiscord <Tukz@gmx.de>2024-03-07 19:07:36 +0100
commitd01decc989b7c99facc8f71d6298916b85ec994c (patch)
treeb863d66b47719b7fc2c918152ea7a22849a2f1d3 /webAO/packets/handlers/handleFM.ts
parentcda90f55e45ef237e59d411fb84947b4d1145b2e (diff)
encoding oopsie
Diffstat (limited to 'webAO/packets/handlers/handleFM.ts')
-rw-r--r--webAO/packets/handlers/handleFM.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/webAO/packets/handlers/handleFM.ts b/webAO/packets/handlers/handleFM.ts
index fce10e3..4ac4ae4 100644
--- a/webAO/packets/handlers/handleFM.ts
+++ b/webAO/packets/handlers/handleFM.ts
@@ -11,6 +11,6 @@ export const handleFM = (args: string[]) => {
for (let i = 1; i < args.length - 1; i++) {
// Check when found the song for the first time
- addTrack(safeTags(args[i]));
+ addTrack(args[i]);
}
}