summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/public/app.js')
-rw-r--r--js/public/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 86aa989db..546044de7 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -51,7 +51,8 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
'Persistence', 'Config', function(Persistence, Config) {
Persistence.init();
return setInterval(function() {
- return Persistence.getAllFeeds();
+ Persistence.getAllFeeds();
+ return Persistence.getAllFolders();
}, Config.feedUpdateInterval);
}
]);