Skip to content

Commit f085330

Browse files
committed
[Fix #2411] Don't show warnings when the middleware version
requirements are met I forgot to flip the order of the arguments here when I changed the code to also include a missing version check.
1 parent 3b44065 commit f085330

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-connection.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ message in the REPL area."
208208
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
209209
"CIDER %s requires cider-nrepl to work normally. Please, install it!"
210210
cider-version cider-required-middleware-version middleware-version))
211-
((version<= cider-required-middleware-version middleware-version)
211+
((version<= middleware-version cider-required-middleware-version)
212212
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
213213
"CIDER %s requires cider-nrepl %s+, but you're currently using cider-nrepl %s. Things will break!"
214214
cider-version cider-required-middleware-version middleware-version)))))

0 commit comments

Comments
 (0)