summaryrefslogtreecommitdiff
path: root/js/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/App.js')
-rw-r--r--js/App.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/App.js b/js/App.js
index 262988135..dad7723ca 100644
--- a/js/App.js
+++ b/js/App.js
@@ -1198,19 +1198,19 @@ const App = {
}
};
this.hotkey_actions["goto_read"] = () => {
- Feeds.open({feed: -6});
+ Feeds.open({feed: Feeds.FEED_RECENTLY_READ});
};
this.hotkey_actions["goto_all"] = () => {
- Feeds.open({feed: -4});
+ Feeds.open({feed: Feeds.FEED_ALL});
};
this.hotkey_actions["goto_fresh"] = () => {
- Feeds.open({feed: -3});
+ Feeds.open({feed: Feeds.FEED_FRESH});
};
this.hotkey_actions["goto_marked"] = () => {
- Feeds.open({feed: -1});
+ Feeds.open({feed: Feeds.FEED_STARRED});
};
this.hotkey_actions["goto_published"] = () => {
- Feeds.open({feed: -2});
+ Feeds.open({feed: Feeds.FEED_PUBLISHED});
};
this.hotkey_actions["goto_prefs"] = () => {
App.openPreferences();