mirror of
https://codeberg.org/vlw/disneyplus-pip.git
synced 2025-09-13 18:33:40 +02:00
Fixed Nullish coalescing operator typo
? ? to ??
This commit is contained in:
parent
e8013c0ea1
commit
b931f1d775
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@
|
|||
}
|
||||
// Attempt to locate target for PIP button
|
||||
const mediaControlsMutated = (mutations, observer) => {
|
||||
const target = mediaControlsWrapper.getElementsByClassName("controls__right")[0] ? ? false;
|
||||
const target = mediaControlsWrapper.getElementsByClassName("controls__right")[0] ?? false;
|
||||
if (!target || target.length < 1) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue