We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9263e commit a7fef54Copy full SHA for a7fef54
src/commands/handlers/registration.js
@@ -43,7 +43,7 @@ var handlers = {
43
var j;
44
45
for (i = 1; i < options.length; i++) {
46
- option = options[i].split('=', 2);
+ option = Helpers.splitOnce(options[i], '=');
47
option[0] = option[0].toUpperCase();
48
49
this.network.options[option[0]] = (typeof option[1] !== 'undefined') ? option[1] : true;
0 commit comments