|
@@ -75,7 +75,6 @@ coleslaw:post and returns the tweet content.")
|
75
|
75
|
|
76
|
76
|
;; fallback to chirp for credential erros
|
77
|
77
|
(chirp:account/verify-credentials)
|
78
|
|
-
|
79
|
78
|
(when tweet-format
|
80
|
79
|
(setf *tweet-format* tweet-format)))
|
81
|
80
|
|
|
@@ -87,7 +86,7 @@ coleslaw:post and returns the tweet content.")
|
87
|
86
|
:do (tweet-new-post file)))
|
88
|
87
|
|
89
|
88
|
(defun tweet-new-post (file)
|
90
|
|
- "Retrieve most recent post from in memory DB and publish it."
|
|
89
|
+ "Retrieve content matching FILE from in memory DB and publish it."
|
91
|
90
|
(let ((post (coleslaw::find-content-by-path file)))
|
92
|
91
|
(chirp:statuses/update (%format-post 0 post))))
|
93
|
92
|
|