From: Luigi Pinca Date: Wed, 29 Jul 2015 12:56:18 +0000 (+0200) Subject: removed trailing comma X-Git-Url: https://git.saalbach.dev/?a=commitdiff_plain;h=68eec1f321bdbf3451ff3a05b14276d292bcb809;p=binbsis50.git removed trailing comma --- diff --git a/lib/rooms.js b/lib/rooms.js index 91b9cd3..5510eae 100644 --- a/lib/rooms.js +++ b/lib/rooms.js @@ -282,7 +282,7 @@ Room.prototype.onGuess = function(spark, guess) { return this.onMatch(spark, 'artist'); } if (amatch(title, guess)) { - return this.onMatch(spark, 'title'); + return this.onMatch(spark, 'title'); } return spark.send('nomatch'); } @@ -586,7 +586,7 @@ Room.prototype.sendTrackInfo = function() { artworkUrl: this.artworkUrl, artistName: this.artistName, trackName: this.trackName, - trackViewUrl: this.trackViewUrl, + trackViewUrl: this.trackViewUrl }); this.finishline = 1;