Skip to content

Commit

Permalink
fix: Add youtube URL to current song command
Browse files Browse the repository at this point in the history
  • Loading branch information
opti21 committed Apr 26, 2022
1 parent 899a7fc commit dca3164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ twitch.on("message", async (channel, tags, message, self) => {
if (growthbook.isOn("bot-talk")) {
twitch.say(
channel,
`@${tags.username} Current Song: ${request?.Video.title}`
`@${tags.username} Current Song: ${request?.Video.title}: https://www.youtube.com/watch?v=${request?.Video.youtube_id}`
);
}
return;
Expand Down

0 comments on commit dca3164

Please sign in to comment.