Skip to content

Commit

Permalink
Do not open the news page on version update
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkelM committed Jul 23, 2024
1 parent c48df6e commit 347b911
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,6 @@ async function handleExtensionUpdate(manifestData, previousVersion) {
}

async function handleVersionSpecificUpdates(previousVersion) {
// v3.1.5 added a notice for people using playlists
if (previousVersion < "3.1.5") {
await chrome.tabs.create({ url: chrome.runtime.getURL("html/breakingNews.html") });
}

// v3.0.1 changed the data type for the shuffleIgnoreShortsOption from boolean to number
if (previousVersion < "3.0.1") {
console.log("Updating sync storage to v3.0.1 format...", true);
Expand Down

0 comments on commit 347b911

Please sign in to comment.