mirror of
https://github.com/bitwarden/jslib
synced 2025-12-23 19:53:55 +00:00
Remove empty catch blocks, and update tslint rule (#513)
This commit is contained in:
@@ -564,7 +564,9 @@ export class CryptoService implements CryptoServiceAbstraction {
|
||||
try {
|
||||
encType = parseInt(headerPieces[0], null);
|
||||
encPieces = headerPieces[1].split('|');
|
||||
} catch (e) { }
|
||||
} catch (e) {
|
||||
this.logService.error(e);
|
||||
}
|
||||
}
|
||||
|
||||
switch (encType) {
|
||||
|
||||
Reference in New Issue
Block a user