Skip to content

Commit

Permalink
fix: make license notice a bit less intrusive
Browse files Browse the repository at this point in the history
  • Loading branch information
june07 committed Aug 4, 2024
1 parent e260abb commit 0b727fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nimv3",
"version": "3.9.1",
"version": "3.9.2",
"scripts": {
"dev": "vite --host",
"dev:extension": "npm-run-all --parallel build:dev watch:rollup:deps",
Expand Down
4 changes: 2 additions & 2 deletions src/sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -442,11 +442,11 @@ async function checkLicenseStatus() {
if (tabs.length > 0) {
const existingTabId = tabs[0].id

await chrome.tabs.update(existingTabId, { active: true })
await chrome.tabs.update(existingTabId, { active: false })
} else {
await chrome.tabs.create({
url: 'https://june07.com/nim-subscription/?oUserId=' + oUserId,
active: true
active: false
})
}
}
Expand Down

0 comments on commit 0b727fb

Please sign in to comment.