Skip to content

Commit

Permalink
! Fix video comment external link parsing for local API (#3448)
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE authored Apr 26, 2023
1 parent a3c4981 commit f6d8e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/helpers/api/local.js
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ export function parseLocalTextRuns(runs, emojiSize = 16, options = { looseChanne
break
case 'WEB_PAGE_TYPE_UNKNOWN':
default: {
const url = new URL(endpoint.payload.url)
const url = new URL(endpoint.payload?.content?.confirmDialogRenderer?.confirmButton?.buttonRenderer?.command?.urlEndpoint?.url || endpoint.payload.url)
if (url.hostname === 'www.youtube.com' && url.pathname === '/redirect' && url.searchParams.has('q')) {
// remove utm tracking parameters
const realURL = new URL(url.searchParams.get('q'))
Expand Down

0 comments on commit f6d8e78

Please sign in to comment.