Don't recurse up prototype.

This commit is contained in:
Jason A. Donenfeld 2011-05-17 02:58:44 -04:00
parent 346b9eee43
commit c312863f85

View File

@ -85,7 +85,7 @@
cacheKey = subalbum; cacheKey = subalbum;
else else
cacheKey = PhotoFloat.cachePath(subalbum.parent.path + "/" + subalbum.path); cacheKey = PhotoFloat.cachePath(subalbum.parent.path + "/" + subalbum.path);
if (cacheKey in this.albumCache) { if (this.albumCache.hasOwnProperty(cacheKey)) {
callback(this.albumCache[cacheKey]); callback(this.albumCache[cacheKey]);
return; return;
} }