From 49cb9bfb9eb31919a2c09b1fe364364160a1abc6 Mon Sep 17 00:00:00 2001 From: Jeena Date: Sun, 22 Sep 2013 04:08:00 +0200 Subject: [PATCH] fixed another bug with feed names --- js/OwnCloud.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/OwnCloud.js b/js/OwnCloud.js index bb5d824..ecfeb09 100644 --- a/js/OwnCloud.js +++ b/js/OwnCloud.js @@ -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(); }); };