Fix cache typo in UserSettings
This commit is contained in:
parent
9a3a87bd57
commit
2691b23c09
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@
|
|||
get : function (key) {
|
||||
this.checKeyValidity_(key);
|
||||
if (key in this.cache_) {
|
||||
return cache[key];
|
||||
return this.cache_[key];
|
||||
}
|
||||
return this.get_(key);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue