master
Dmitri Sotnikov 4 years ago committed by GitHub
parent 9a216f5fa7
commit dfb1685569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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")))