Merge pull request #1087 from AStove/FixBugAddSpace

Correctly interpret value for addSpace
use-minification
Lorenz Hübschle-Schneider 6 years ago committed by GitHub
commit 6f3930174c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      js/irc-utils.js

@ -119,7 +119,7 @@ IrcUtils.service('IrcUtils', [function() {
suf = ':';
}
// addSpace defaults to true
var addSpaceChar = (addSpace === undefined || addSpace === true) ? ' ' : '';
var addSpaceChar = (addSpace === undefined || addSpace === 'on') ? ' ' : '';
// new nick list to search in
var searchNickList = _ciNickList(nickList);

Loading…
Cancel
Save