From 68eec1f321bdbf3451ff3a05b14276d292bcb809 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Wed, 29 Jul 2015 14:56:18 +0200 Subject: [PATCH] removed trailing comma --- lib/rooms.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.54.0