mirror of
https://github.com/nuttylmao/nutty.gg.git
synced 2026-09-18 19:50:58 -04:00
Fixed issue with Kick usernames that have underscores in them
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user