diff options
author | Sean Allred <code@seanallred.com> | 2014-11-27 12:57:04 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-27 12:57:04 -0500 |
commit | 686ff49e2f9ec57e7c5a712f7e934fa9f7099b0d (patch) | |
tree | 38a63312644dde60939e1bcc60cee8e8b62b95d0 /sx-favorites.el | |
parent | 6848008b60938100d04cda96c093a24cb3370f9a (diff) | |
parent | f9c12d9c09e1dff7c29b3bf94dbccd042f48f078 (diff) |
Merge pull request #108 from vermiculus/issue-82
Make site a url argument
Diffstat (limited to 'sx-favorites.el')
-rw-r--r-- | sx-favorites.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sx-favorites.el b/sx-favorites.el index aaf2734..d957167 100644 --- a/sx-favorites.el +++ b/sx-favorites.el @@ -52,7 +52,8 @@ Added as hook to initialization." (defun sx-favorites--retrieve-favorites (site) "Obtain list of starred QUESTION_IDs for SITE." (sx-method-call 'me - :submethod (format "favorites?site=%s" site) + :submethod 'favorites + :site site :filter sx-favorite-list-filter :auth t)) |