fixed another bug with feed names

This commit is contained in:
Jeena 2013-09-22 04:08:00 +02:00
parent e510553c83
commit 49cb9bfb9e

View file

@ -117,7 +117,7 @@ OwnCloud.prototype.getFeeds = function(callback) {
_this.feeds[feed.id] = feed;
}
localStorage.feeds = JSON.stringify(this.feeds);
localStorage.feeds = JSON.stringify(_this.feeds);
callback();
});
};