1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

Disable browser integration on Mac for non MAS version (for now)

This commit is contained in:
Hinton
2020-12-16 21:49:05 +01:00
parent d20aaeb0e5
commit 02a3fbde99
3 changed files with 22 additions and 3 deletions

View File

@@ -83,7 +83,11 @@ export default class NativeMessage {
chunks.push(chunk);
}
processData();
try {
processData();
} catch(e) {
console.error(e);
}
});
}
}