Minor cleanup
This commit is contained in:
parent
a77cca82c8
commit
41134aee98
|
@ -1,9 +1,11 @@
|
|||
import { CryptoService, VaultTimeoutService } from 'jslib/abstractions';
|
||||
import { CryptoService, LogService, VaultTimeoutService } from 'jslib/abstractions';
|
||||
import { StorageService } from 'jslib/abstractions/storage.service';
|
||||
import { ConstantsService } from 'jslib/services';
|
||||
import { BrowserApi } from '../browser/browserApi';
|
||||
import RuntimeBackground from './runtime.background';
|
||||
|
||||
const MessageValidTimeout = 10 * 1000;
|
||||
|
||||
export class NativeMessagingBackground {
|
||||
private connected = false;
|
||||
private port: browser.runtime.Port | chrome.runtime.Port;
|
||||
|
@ -46,8 +48,9 @@ export class NativeMessagingBackground {
|
|||
private async onMessage(rawMessage: any) {
|
||||
const message = JSON.parse(await this.cryptoService.decryptToUtf8(rawMessage));
|
||||
|
||||
if (Math.abs(message.timestamp - Date.now()) > 10*1000) {
|
||||
console.error("MESSAGE IS TO OLD");
|
||||
if (Math.abs(message.timestamp - Date.now()) > MessageValidTimeout) {
|
||||
// tslint:disable-next-line
|
||||
console.error('NativeMessage is to old, ignoring.');
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -69,6 +72,9 @@ export class NativeMessagingBackground {
|
|||
this.vaultTimeoutService.biometricLocked = false;
|
||||
}
|
||||
}
|
||||
default:
|
||||
// tslint:disable-next-line
|
||||
console.error('NativeMessage, got unknown command.');
|
||||
}
|
||||
|
||||
if (this.resolver) {
|
||||
|
|
Loading…
Reference in New Issue