Merge pull request #18 from EBendinelli/master
Fix to get the last toot from the account timeline instead of "home"
This commit is contained in:
commit
5c45d91c28
2 changed files with 2 additions and 1 deletions
|
@ -53,6 +53,7 @@ with later timestamps to avoid duplicate posts. On the first run the timestamp w
|
||||||
:rss {"Hacker News" "https://hnrss.org/newest"
|
:rss {"Hacker News" "https://hnrss.org/newest"
|
||||||
"r/Clojure" "https://www.reddit.com/r/clojure/.rss"}
|
"r/Clojure" "https://www.reddit.com/r/clojure/.rss"}
|
||||||
:mastodon {:access_token "XXXX"
|
:mastodon {:access_token "XXXX"
|
||||||
|
:acccount-id "XXXX"
|
||||||
:api_url "https://botsin.space/api/v1/"
|
:api_url "https://botsin.space/api/v1/"
|
||||||
;; optional boolean to mark content as sensitive
|
;; optional boolean to mark content as sensitive
|
||||||
:sensitive? true
|
:sensitive? true
|
||||||
|
|
|
@ -119,7 +119,7 @@
|
||||||
(post-status status-text (not-empty ids)))))
|
(post-status status-text (not-empty ids)))))
|
||||||
|
|
||||||
(defn get-mastodon-timeline [callback]
|
(defn get-mastodon-timeline [callback]
|
||||||
(.then (.get mastodon-client "timelines/home" #js {})
|
(.then (.get mastodon-client (string/join "" ["accounts/" (:account-id mastodon-config) "/statuses"]) #js {})
|
||||||
#(let [response (-> % .-data js->edn)]
|
#(let [response (-> % .-data js->edn)]
|
||||||
(if-let [error (:error response)]
|
(if-let [error (:error response)]
|
||||||
(exit-with-error error)
|
(exit-with-error error)
|
||||||
|
|
Reference in a new issue