Skip to content

Commit

Permalink
fix badge name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
igrigorik committed Feb 6, 2015
1 parent d93b219 commit 43a9c22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ga-beacon/ga-beacon.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func handler(w http.ResponseWriter, r *http.Request) {
w.Write(badgeFlat)
} else if _, ok := query["flat-gif"]; ok {
w.Header().Set("Content-Type", "image/gif")
w.Write(badgeFlatGit)
w.Write(badgeFlatGif)
} else {
w.Header().Set("Content-Type", "image/svg+xml")
w.Write(badge)
Expand Down

2 comments on commit 43a9c22

@paazmaya
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OMG! Sorry about that...

@igrigorik
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all good, fixed :)

Please sign in to comment.