about summary refs log tree commit diff
path: root/src/pronouns/web.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/pronouns/web.clj')
-rw-r--r--src/pronouns/web.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pronouns/web.clj b/src/pronouns/web.clj
index 6321198..6ef3dd3 100644
--- a/src/pronouns/web.clj
+++ b/src/pronouns/web.clj
@@ -51,10 +51,10 @@
        (if (= "application/json" (s/lower-case (get headers "accept")))
          {:status 200
           :headers {"Content-Type" "application/json"}
-          :body (pages/pronouns-json params pronouns-table)}
+          :body (pages/pronouns-json params)}
          {:status 200
           :headers {"Content-Type" "text/html"}
-          :body (pages/pronouns params pronouns-table)}))
+          :body (pages/pronouns params)}))
 
   (ANY "*" []
        (route/not-found (slurp (io/resource "404.html")))))