diff options
-rw-r--r-- | src/pronouns/web.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pronouns/web.clj b/src/pronouns/web.clj index 665618d..8e70e3b 100644 --- a/src/pronouns/web.clj +++ b/src/pronouns/web.clj @@ -51,7 +51,7 @@ {:status 200 :headers {"Content-Type" "text/plain"} :body (let [pronouns (parse-pronouns-with-lookup (:* params))] - (apply render-examples-page pronouns))}) + (apply render-examples-page (or pronouns [:error])))}) (ANY "*" [] (route/not-found (slurp (io/resource "404.html"))))) |