Skip to content

Commit

Permalink
getInt returns now Integer
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Helbig committed Sep 5, 2016
1 parent 8d2b3ff commit 83f2993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/windows/NativeStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ var NativeStorageProxy = {
try {
var key = args[0];
var vault = new Windows.Security.Credentials.PasswordVault();
var passwordCredential = vault.retrieve(service, key);
var passwordCredential = parseInt(vault.retrieve(service, key));
win(passwordCredential.password);
} catch (e) {
fail('failed to get Int from NativeStorage - ' + e.message);
Expand Down

0 comments on commit 83f2993

Please sign in to comment.