aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAjay <[email protected]>2022-10-11 00:08:16 -0400
committerAjay <[email protected]>2022-10-11 00:08:16 -0400
commit85e3d3bc1842c69de179eca529b4084b73f365b3 (patch)
treef4caa516affde442e5701530c3e10ca534fae764
parent47ea8cd01778e3c22495f953ce0b5108e441af02 (diff)
parent61e78eb6689424026f46a85eb7e91c3bffce05c9 (diff)
downloadSponsorBlock-85e3d3bc1842c69de179eca529b4084b73f365b3.tar.gz
SponsorBlock-85e3d3bc1842c69de179eca529b4084b73f365b3.zip
Merge branch 'master' of https://github.com/ajayyy/SponsorBlock
-rw-r--r--src/popup.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/popup.ts b/src/popup.ts
index 1fc1acc6..338ecfcd 100644
--- a/src/popup.ts
+++ b/src/popup.ts
@@ -708,8 +708,9 @@ async function runThePopup(messageListener?: MessageListener): Promise<void> {
&& [SponsorHideType.Visible, SponsorHideType.Hidden].includes(downloadedTimes[i].hidden)) {
voteButtonsContainer.appendChild(hideButton);
}
- voteButtonsContainer.appendChild(skipButton);
-
+ if (downloadedTimes[i].actionType !== ActionType.Full) {
+ voteButtonsContainer.appendChild(skipButton);
+ }
// Will contain request status
const voteStatusContainer = document.createElement("div");