Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Do not use this to ask about lost codes or accounts>
<More info here: https://github.com/Authenticator-Extension/Authenticator/wiki/Lost-Codes>
<More info here: https://authenticator.cc/docs/en/lost-codes>
<You can also open an issue by Tweeting with #AuthenticatorFeedback>

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ about: Report a bug in Authenticator
---

<Do not use this to ask about lost codes or accounts>
<More info here: https://github.com/Authenticator-Extension/Authenticator/wiki/Lost-Codes>
<More info here: https://authenticator.cc/docs/en/lost-codes>

**Describe the bug:** <Describe the issue with Authenticator>

Expand Down
7 changes: 2 additions & 5 deletions src/background.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,10 @@ chrome.runtime.onInstalled.addListener(async (details) => {

if (navigator.userAgent.indexOf('Chrome') !== -1) {
url =
'https://github.com/Authenticator-Extension/Authenticator/wiki/Chrome-Issues';
} else if (navigator.userAgent.indexOf('Firefox') !== -1) {
url =
'https://github.com/Authenticator-Extension/Authenticator/wiki/Firefox-Issues';
'https://authenticator.cc/docs/en/chrome-issues';
} else if (navigator.userAgent.indexOf('Edge') !== -1) {
url =
'https://github.com/Authenticator-Extension/Authenticator/wiki/Edge-Issues';
'https://authenticator.cc/docs/en/edge-issues';
}

if (url) {
Expand Down
6 changes: 3 additions & 3 deletions src/ui/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ function resize(zoom: number) {

async function openHelp() {
let url =
'https://github.com/Authenticator-Extension/Authenticator/wiki/Chrome-Issues';
'https://authenticator.cc/docs/en/chrome-issues';

if (navigator.userAgent.indexOf('Firefox') !== -1) {
url =
'https://github.com/Authenticator-Extension/Authenticator/wiki/Firefox-Issues';
'https://authenticator.cc/docs/en/firefox-issues';
} else if (navigator.userAgent.indexOf('Edge') !== -1) {
url =
'https://github.com/Authenticator-Extension/Authenticator/wiki/Edge-Issues';
'https://authenticator.cc/docs/en/edge-issues';
}

const feedbackURL = await ManagedStorage.get('feedbackURL');
Expand Down
2 changes: 1 addition & 1 deletion view/import.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<label for="import_code_radio">{{ i18n.import_backup_code }}</label>
</div>
<div>
<p id="import_info">{{ i18n.otp_backup_inform }} <a href="https://github.com/Authenticator-Extension/Authenticator/wiki/Standard-OTP-Backup-Format" target="_blank"> {{ i18n.otp_backup_learn }}</a></p>
<p id="import_info">{{ i18n.otp_backup_inform }} <a href="https://authenticator.cc/docs/en/otp-backup" target="_blank"> {{ i18n.otp_backup_learn }}</a></p>
</div>
<div v-show="importType === 'import_file'">
<div class="import_file" v-if="!getFilePassphrase">
Expand Down