From 4c3ec0744d39da78093a639ce5cf08c84df823b5 Mon Sep 17 00:00:00 2001 From: Daniel Compton Date: Mon, 26 Aug 2019 19:13:46 +1200 Subject: [PATCH] Fix Integrant resume-key method When resuming an Integrant component, this now halts the old implementation, rather than the old options. --- src/sass4clj/integrant.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sass4clj/integrant.clj b/src/sass4clj/integrant.clj index bbf3234..383463c 100644 --- a/src/sass4clj/integrant.clj +++ b/src/sass4clj/integrant.clj @@ -15,5 +15,5 @@ (if (= opts old-opts) old-impl (do - (ig/halt-key! key old-opts) + (ig/halt-key! key old-impl) (ig/init-key key opts))))