Fixed issue with Kick usernames that have underscores in them

This commit is contained in:
nuttylmao
2025-09-18 01:51:49 +10:00
parent 9990755ccc
commit 263a7cb07b
2 changed files with 2 additions and 2 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -154,7 +154,7 @@ async function FetchKickInfo() {
let kickData = { let kickData = {
platform: 'kick', platform: 'kick',
id: 'kick', id: 'kick',
streamUrl: `https://www.kick.com/${userLogin}`, streamUrl: `https://www.kick.com/${userLogin.replaceAll('_', '-')}`,
dashboardUrl: 'https://dashboard.kick.com/stream', dashboardUrl: 'https://dashboard.kick.com/stream',
userLogin: userLogin userLogin: userLogin
} }