Skip to content

Commit 6b7bee2

Browse files
committed
Merge pull request #221 from chentsulin/patch-1
remove a extra ;
2 parents a330438 + 8be2e64 commit 6b7bee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Server.prototype.serveMagicHtml = function(req, res, next) {
241241
Server.prototype._sendStats = function(socket, stats, force) {
242242
if(!force && stats && (!stats.errors || stats.errors.length === 0) && stats.assets && stats.assets.every(function(asset) {
243243
return !asset.emitted;
244-
})) return socket.emit("still-ok");;
244+
})) return socket.emit("still-ok");
245245
socket.emit("hash", stats.hash);
246246
if(stats.errors.length > 0)
247247
socket.emit("errors", stats.errors);

0 commit comments

Comments
 (0)