about summary refs log tree commit diff
path: root/src/lib/strings/errors.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/strings/errors.ts')
-rw-r--r--src/lib/strings/errors.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/strings/errors.ts b/src/lib/strings/errors.ts
index 1a010fea6..6c8177e44 100644
--- a/src/lib/strings/errors.ts
+++ b/src/lib/strings/errors.ts
@@ -17,7 +17,7 @@ export function cleanError(str: any): string {
   ) {
     return t`The server appears to be experiencing issues. Please try again in a few moments.`
   }
-  if (str.includes('Bad token scope')) {
+  if (str.includes('Bad token scope') || str.includes('Bad token method')) {
     return t`This feature is not available while using an App Password. Please sign in with your main password.`
   }
   if (str.startsWith('Error: ')) {