From f966e6b26f5571400bdb247ae9c28bc0f4681fcc Mon Sep 17 00:00:00 2001 From: gered Date: Mon, 8 Sep 2014 13:34:47 -0400 Subject: [PATCH] fix incorrect call to validate-bundle! fn --- src/clj_hl7_fhir/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj_hl7_fhir/core.clj b/src/clj_hl7_fhir/core.clj index 7282b86..6ce52f7 100644 --- a/src/clj_hl7_fhir/core.clj +++ b/src/clj_hl7_fhir/core.clj @@ -312,7 +312,7 @@ "returns the base-url from the given FHIR bundle. throws an exception if the value passed is not a valid FHIR bundle." [bundle] - (validate-bundle!) + (validate-bundle! bundle) (->> (:link bundle) (filter #(= "fhir-base" (:rel %))) (first)