This commit is contained in:
Dmitri Sotnikov 2020-03-22 10:28:34 -04:00 committed by GitHub
parent 9a216f5fa7
commit dfb1685569
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -179,11 +179,11 @@
(defn post-tweets [last-post-time]
(fn [error tweets response]
(if (nil? error)
(if error
(exit-with-error error)
(->> (js->edn tweets)
(map parse-tweet)
(post-items last-post-time))
(exit-with-error error))))
(post-items last-post-time)))))
(defn strip-utm [news-link]
(first (string/split news-link #"\?utm")))