Fixed mislabeled Tor Browser settings override option.

This commit is contained in:
hackademix 2023-03-30 00:23:49 +02:00
parent ce20d4e2b6
commit 97ef8f0d47
No known key found for this signature in database
GPG Key ID: 231A83AFDA9C2434
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ var UI = (() => {
if (label) {
const browserName = (await browser.runtime.getBrowserInfo()).name;
if (browserName !== "Firefox") {
label.textContent = browserName;
label.textContent = label.textContent.replace(/\bTor Browser\b/g, browserName);
}
}
document.documentElement.classList.add("tor");