Fix an age old log message missing whitespace

This commit is contained in:
calzoneman 2016-08-10 23:10:37 -07:00
parent f9ccb1509b
commit d9d385f85e
2 changed files with 1 additions and 5 deletions

View file

@ -675,7 +675,7 @@ PlaylistModule.prototype.handlePlayNext = function (user) {
title = this.current.media.title;
}
this.channel.logger.log("[playlist] " + user.getName() + " skipped" + title);
this.channel.logger.log("[playlist] " + user.getName() + " skipped " + title);
this._playNext();
};