Skip to content

Commit

Permalink
fix(secure-storage-echo): method is inaccessible when device is not s…
Browse files Browse the repository at this point in the history
…ecure #3322 (#3413)
  • Loading branch information
danielzen authored May 15, 2020
1 parent 809e5ac commit e715498
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@ionic-native/plugins/secure-storage-echo/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class SecureStorageEcho extends IonicNativePlugin {
return getPromise<SecureStorageEchoObject>((res: Function, rej: Function) => {
const instance = new (SecureStorageEcho.getPlugin())(
() => res(new SecureStorageEchoObject(instance)),
rej,
() => rej(new SecureStorageEchoObject(instance)),
store,
options
);
Expand Down

0 comments on commit e715498

Please sign in to comment.