Skip to content

Commit

Permalink
Fixed a minor bug in the list-domain function
Browse files Browse the repository at this point in the history
There was a minor bug in the list-domain function which
should now be fixed.
  • Loading branch information
Mayank Agarwal committed Oct 3, 2013
1 parent d9d9bc8 commit 911e448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/clojure/cemerick/rummage.clj
Expand Up @@ -50,7 +50,7 @@
res (.listDomains (client client-or-config) req)] res (.listDomains (client client-or-config) req)]
(concat (.getDomainNames res) (concat (.getDomainNames res)
(when (.getNextToken res) (when (.getNextToken res)
(list-domains* client (.getNextToken res)))))) (list-domains* client-or-config (.getNextToken res))))))


(defn list-domains (defn list-domains
"Returns a sequence of all domain names available from the given client." "Returns a sequence of all domain names available from the given client."
Expand Down

0 comments on commit 911e448

Please sign in to comment.