From f147069113b59c02e4cd72ee7f98c105cf957f52 Mon Sep 17 00:00:00 2001 From: Dreamliner Date: Mon, 18 Sep 2023 22:44:24 +0200 Subject: [PATCH] fixed not already free --- chrome/skipper.js | 2 +- firefox/skipper.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/skipper.js b/chrome/skipper.js index be014a1d..05235a48 100644 --- a/chrome/skipper.js +++ b/chrome/skipper.js @@ -942,7 +942,7 @@ if (isPrimeVideo || isNetflix || isDisney || isHotstar) { let title = document.querySelector("h1[data-automation-id='title']")?.textContent?.split(" [")[0]; if (title) { // if not already free blue in prime icon - if (document.querySelector("._1sIAAm")) { + if (!document.querySelector(".fbl-icon._3UMk3x._1a_Ljt._3H1cN4")) { let card = document.querySelector("div#dv-action-box"); if (!DBCache[title]) { getMovieInfo(title, card, false); diff --git a/firefox/skipper.js b/firefox/skipper.js index ac150b34..066dda61 100644 --- a/firefox/skipper.js +++ b/firefox/skipper.js @@ -942,7 +942,7 @@ if (isPrimeVideo || isNetflix || isDisney || isHotstar) { let title = document.querySelector("h1[data-automation-id='title']")?.textContent?.split(" [")[0]; if (title) { // if not already free blue in prime icon - if (document.querySelector("._1sIAAm")) { + if (!document.querySelector(".fbl-icon._3UMk3x._1a_Ljt._3H1cN4")) { let card = document.querySelector("div#dv-action-box"); if (!DBCache[title]) { getMovieInfo(title, card, false);