diff options
author | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-03 00:43:31 +0100 |
---|---|---|
committer | Pedro Silva <psilva+git@pedrosilva.pt> | 2013-04-03 00:43:31 +0100 |
commit | c4f1391d9e82dfeb26c0edd8ccdd6fec2209f324 (patch) | |
tree | f5a99057d1cf14ca2b8ecda2c8459177af5eaa07 | |
parent | c6b84e1338bd92f6dc527015fc3313f85fe68684 (diff) |
Finish nnttrss-get-feeds implementation that was previously WIP
-rw-r--r-- | nnttrss.el | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -153,14 +153,12 @@ possibly, :has_img, :updated, and :kind." Each plist has the keywords :last_updated, :cat_id, :order_id, :feed_url, :unread, :title, :id, and :icon." - (nnttrss-post-request nnttrss-address - nil - :op "getFeeds" - :sid session-id - params)) ; FIXME: need to unwrap params - ; before handing them to - ; nnttrss-post-request - + (apply 'nnttrss-post-request + address + nil + :op "getFeeds" + :sid session-id + params)) |