decrypt optimization
This commit is contained in:
parent
37d9afc58b
commit
05dde1051c
|
@ -90,8 +90,8 @@ export class CipherString {
|
||||||
}
|
}
|
||||||
|
|
||||||
async decrypt(orgId: string): Promise<string> {
|
async decrypt(orgId: string): Promise<string> {
|
||||||
if (this.decryptedValue) {
|
if (this.decryptedValue != null) {
|
||||||
return Promise.resolve(this.decryptedValue);
|
return this.decryptedValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
let cryptoService: CryptoService;
|
let cryptoService: CryptoService;
|
||||||
|
|
Loading…
Reference in New Issue