From 911e448a8d91f537589826eb090de42dd32a500b Mon Sep 17 00:00:00 2001 From: Mayank Agarwal Date: Thu, 3 Oct 2013 12:59:15 -0700 Subject: [PATCH] Fixed a minor bug in the list-domain function There was a minor bug in the list-domain function which should now be fixed. --- src/main/clojure/cemerick/rummage.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/clojure/cemerick/rummage.clj b/src/main/clojure/cemerick/rummage.clj index 61ac3c1..152b05b 100644 --- a/src/main/clojure/cemerick/rummage.clj +++ b/src/main/clojure/cemerick/rummage.clj @@ -50,7 +50,7 @@ res (.listDomains (client client-or-config) req)] (concat (.getDomainNames res) (when (.getNextToken res) - (list-domains* client (.getNextToken res)))))) + (list-domains* client-or-config (.getNextToken res)))))) (defn list-domains "Returns a sequence of all domain names available from the given client."