Skip to content

Commit

Permalink
Merge branch 'hotfix-2.9.2'
Browse files Browse the repository at this point in the history
Errored stats needed fixing
  • Loading branch information
LukeHandle committed Oct 11, 2015
2 parents 8649ae5 + b634297 commit ebc7cef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const (
MinWidth = uint(8)
MaxWidth = uint(300)

ImgdVersion = "2.9.1"
ImgdVersion = "2.9.2"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion status.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (s *StatusCollector) handleMessage(msg statusCollectorMessage) {
s.info.CacheMisses += 1
case StatusTypeErrored:
err := msg.StatusType
if _, exists := s.info.Requested[err]; exists {
if _, exists := s.info.Errored[err]; exists {
s.info.Errored[err] += 1
} else {
s.info.Errored[err] = 1
Expand Down

0 comments on commit ebc7cef

Please sign in to comment.