Skip to content

Commit

Permalink
Use the right comparison function
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatsov committed May 11, 2019
1 parent 95f45cb commit 39dfb92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cider-connection.el
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ message in the REPL area."
((null middleware-version)
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
"CIDER requires cider-nrepl to be fully functional. Some features will not be available without it!"))
((not (= middleware-version cider-required-middleware-version))
((not (string= middleware-version cider-required-middleware-version))
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
"CIDER %s requires cider-nrepl %s, but you're currently using cider-nrepl %s. The version mismatch might break some functionality!"
cider-version cider-required-middleware-version middleware-version)))))
Expand Down

0 comments on commit 39dfb92

Please sign in to comment.