aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/popup.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/popup.ts')
-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");