aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ttrss.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/ttrss.el b/ttrss.el
index 638bdf2..3ee3433 100644
--- a/ttrss.el
+++ b/ttrss.el
@@ -607,5 +607,14 @@ following key-value pairs:
;; unsubscribeFeed
;; getFeedTree
+(defun ttrss-catchup-feed (address sid feed-id)
+ "Try to catchup feed at ADDRESS using SID with FEED-ID.
+Returns a status string (typically 'OK')."
+ (ttrss-post-request address
+ :status
+ :op "catchupFeed"
+ :sid sid
+ :feed_id feed-id))
+
(provide 'ttrss)
;;; ttrss.el ends here