diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-04 09:36:27 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-04 09:36:27 +0000 |
| commit | bb0a136944cbb60b44d655bf8e50553119210578 (patch) | |
| tree | cf6b5464b3d3be667444316608d369a081016e6d /js | |
| parent | bc0da8edb699eec9fb6424bb5d8650ac48dca69d (diff) | |
| parent | 01159fa6f8c2421457297914dd42039bc12b826e (diff) | |
Merge branch 'cringe-jobs' into 'master'
Cringe jobs
See merge request tt-rss/tt-rss!124
Diffstat (limited to 'js')
| -rw-r--r-- | js/App.js | 5 | ||||
| -rw-r--r-- | js/Feeds.js | 7 |
2 files changed, 0 insertions, 12 deletions
@@ -829,11 +829,6 @@ const App = { Headlines.initScrollHandler(); - if (this.getInitParam("simple_update")) { - console.log("scheduling simple feed updater..."); - window.setInterval(() => { Feeds.updateRandom() }, 30 * 1000); - } - if (this.getInitParam('check_for_updates')) { window.setInterval(() => { this.checkForUpdates(); diff --git a/js/Feeds.js b/js/Feeds.js index 9088b7efc..7a58a10a4 100644 --- a/js/Feeds.js +++ b/js/Feeds.js @@ -743,13 +743,6 @@ const Feeds = { dialog.show(); }, - updateRandom: function() { - console.log("in update_random_feed"); - - xhr.json("backend.php", {op: "RPC", method: "updaterandomfeed"}, () => { - // - }); - }, renderIcon: function(feed_id, exists) { const icon_url = App.getInitParam("icons_url") + '?' + dojo.objectToQuery({op: 'feed_icon', id: feed_id}); |