]> git.example.dev Git - binbsis50.git/commitdiff
removed trailing comma
authorLuigi Pinca <luigipinca@gmail.com>
Wed, 29 Jul 2015 12:56:18 +0000 (14:56 +0200)
committerLuigi Pinca <luigipinca@gmail.com>
Wed, 29 Jul 2015 12:56:18 +0000 (14:56 +0200)
lib/rooms.js

index 91b9cd3da53b73b3513eaf1f343876a9378486d1..5510eae2595b8c241ba1e5c2940866b1804c7784 100644 (file)
@@ -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;