Skip to content

Commit 0a01445

Browse files
committed
fix(youtube): fix showing verified badge
1 parent ebed3f5 commit 0a01445

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

background/sources/videos/youtube.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export default {
126126
).thumbnails[0].url,
127127
name: user.text,
128128
verified: item.ownerBadges && item.ownerBadges.some((badge) => {
129-
badge.tooltip == 'Verified';
129+
return badge.tooltip == 'Verified';
130130
}),
131131
},
132132
url: videoUrl,

content/pause.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ const $button = get([
1515

1616
if ($button && getComputedStyle($button).display !== 'none') {
1717
$button.click();
18-
true;
1918
}

0 commit comments

Comments
 (0)