From cf9b79107130e3bafda11adc5cc1f11301ccaa1c Mon Sep 17 00:00:00 2001 From: Scott Ferguson Date: Sun, 9 Feb 2014 19:04:06 -0600 Subject: [PATCH] Don't prematurely exit updateGitHubStatus() --- pkg/queue/queue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/queue/queue.go b/pkg/queue/queue.go index 643df98de..a8e9cbc13 100644 --- a/pkg/queue/queue.go +++ b/pkg/queue/queue.go @@ -218,7 +218,7 @@ func updateGitHubStatus(repo *Repo, commit *Commit) error { // get the user from the database // since we need his / her GitHub token user, err := database.GetUser(repo.UserID) - if err == nil { + if err != nil { return err }