1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-05 09:10:53 +01:00

Update apps/desktop/src/services/native-messaging.service.ts

Co-authored-by: Daniel García <dani-garcia@users.noreply.github.com>
This commit is contained in:
Bernd Schoolmann 2024-07-16 13:38:17 +02:00
parent d7cd52bbb3
commit 2d1b123513
No known key found for this signature in database

View File

@ -136,7 +136,7 @@ export class NativeMessagingService {
Math.abs(message.timestamp - Date.now()) > MessageValidTimeout && Math.abs(message.timestamp - Date.now()) > MessageValidTimeout &&
!this.platformUtilService.isDev() !this.platformUtilService.isDev()
) { ) {
this.logService.error("NativeMessage is to old, ignoring."); this.logService.error("NativeMessage is too old, ignoring.");
return; return;
} }