Skip to content

Commit

Permalink
Fixed typo in website badge (wrong capture group used for the label)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuzanneSoy committed Apr 20, 2017
1 parent 9328164 commit 38c47f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -5839,7 +5839,7 @@ cache(function(data, match, sendBadge, request) {
var offlineMessage = escapeFormatSlashes(match[4] != null ? match[4] : "offline");
var onlineColor = escapeFormatSlashes(match[7] != null ? match[7] : "brightgreen");
var offlineColor = escapeFormatSlashes(match[9] != null ? match[9] : "red");
var label = escapeFormatSlashes(match[12] != null ? match[11] : "website");
var label = escapeFormatSlashes(match[12] != null ? match[12] : "website");
var userProtocol = match[14];
var userURI = match[15];
var format = match[16];
Expand Down

0 comments on commit 38c47f5

Please sign in to comment.