Merge pull request #52 from matiu/bug/plain-storage

fix plan storage
This commit is contained in:
Manuel Aráoz 2014-04-15 15:26:45 -03:00
commit b54832567b
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Storage.prototype._key = function(walletId, k) {
};
// get value by key
Storage.prototype.get = function(walletId, k) {
return this._read(localStorage.getItem(this._key(walletId,k)));
return this._read(this._key(walletId,k));
};
// set value for key