diff options
author | Ajay <[email protected]> | 2022-10-11 00:08:16 -0400 |
---|---|---|
committer | Ajay <[email protected]> | 2022-10-11 00:08:16 -0400 |
commit | 85e3d3bc1842c69de179eca529b4084b73f365b3 (patch) | |
tree | f4caa516affde442e5701530c3e10ca534fae764 | |
parent | 47ea8cd01778e3c22495f953ce0b5108e441af02 (diff) | |
parent | 61e78eb6689424026f46a85eb7e91c3bffce05c9 (diff) | |
download | SponsorBlock-85e3d3bc1842c69de179eca529b4084b73f365b3.tar.gz SponsorBlock-85e3d3bc1842c69de179eca529b4084b73f365b3.zip |
Merge branch 'master' of https://github.com/ajayyy/SponsorBlock
-rw-r--r-- | src/popup.ts | 5 |
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"); |