fxb / javascript-last.fm-api

last.fm API bindings for JavaScript
http://lastfm.felixbruns.de/javascript-last.fm-api/
308 stars 53 forks source link

Fix weeklyMethods caching #18

Closed boutboulman closed 8 years ago

boutboulman commented 8 years ago

The array of methods with weekly expiration is declared as a private variable (var weeklyMethods) but referenced as a public property (this.weeklyMethods) meaning no weekly caching was done. weeklyMethods is now completely private.