Merge pull request #333 from caffinatedmonkey/badge_fix

Fixed an Unhandled Error in badges.go
This commit is contained in:
Brad Rydzewski 2014-06-02 10:02:16 -07:00
commit 90370258bd

View file

@ -43,7 +43,11 @@ func Badge(w http.ResponseWriter, r *http.Request) error {
// get the latest commit from the database
// for the requested branch
commit, err := database.GetBranch(repo.ID, branchParam)
if err == nil {
if err != nil {
http.NotFound(w, r)
return nil
}
switch {
case commit.Status == "Success" && len(successParam) == 0:
// if no success image is provided, we serve a
@ -63,7 +67,6 @@ func Badge(w http.ResponseWriter, r *http.Request) error {
// otherwise load unknown image
badge = badgeUnknown
}
}
http.Redirect(w, r, badge, http.StatusSeeOther)
return nil