Skip to content

Commit

Permalink
Remove hl=en param from google support link for AI summary subheader
Browse files Browse the repository at this point in the history
  • Loading branch information
FlaminSarge committed Nov 2, 2024
1 parent 2c5f28c commit db974c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ts/chat-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const parseChatSummary = (renderer: Ytc.AddChatItem, isEphemeral: boolean, banne
const subheader = splitRuns[1].map(run => {
if (run.type === 'text') {
// turn subheader into a link to YT's support page detailing the AI summary feature
return { type: 'link', text: run.text, url: 'https://support.google.com/youtube/thread/18138167?hl=en&msgid=284199217' } as Ytc.ParsedLinkRun;
return { type: 'link', text: run.text, url: 'https://support.google.com/youtube/thread/18138167?msgid=284199217' } as Ytc.ParsedLinkRun;
} else {
return run;
}
Expand Down

0 comments on commit db974c8

Please sign in to comment.