clarify linting confusion

This commit is contained in:
Dave Conway-Jones
2020-09-17 10:02:54 +01:00
parent c21fb22918
commit fbad6e4c2d
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ module.exports = function(RED) {
//console.log(this);
var clustered = !(this.topology === "direct") || false;
var clustered = (this.topology !== "direct") || false;
var url = "mongodb://";
if (this.topology === "dnscluster") {