diff --git a/src/main/cljc/dda/c4k_common/common.cljc b/src/main/cljc/dda/c4k_common/common.cljc index 759fc7e..d378238 100644 --- a/src/main/cljc/dda/c4k_common/common.cljc +++ b/src/main/cljc/dda/c4k_common/common.cljc @@ -61,9 +61,9 @@ (let [resulting-config (merge config-defaults my-config) both (or (and only-config only-auth) (and (not only-config) (not only-auth))) res-vec (cond - both (concat-vec (config-objects resulting-config) (auth-objects my-config my-auth)) - only-config (config-objects my-config) - only-auth (auth-objects my-config my-auth))] + both (concat-vec (config-objects resulting-config) (auth-objects resulting-config my-auth)) + only-config (config-objects resulting-config) + only-auth (auth-objects resulting-config my-auth))] (cs/join "\n---\n" res-vec)))