Feeds.catchupAllFeeds() should be Feeds.catchupAll()

This commit is contained in:
Andrew Dolgov 2019-01-31 12:16:56 +03:00
parent 43411c9264
commit dbab03bd4c
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "dijit/Tree", "dijit/Menu"],
menu.addChild(new dijit.MenuItem({
label: __("Mark all feeds as read"),
onClick: function() {
Feeds.catchupAllFeeds();
Feeds.catchupAll();
}}));
menu.bindDomNode(tnode.domNode);