Skip to content

Commit

Permalink
Oops, Filter is the method, MessageFilter is the interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
bemasher committed Jul 12, 2015
1 parent 7314e7a commit 938607e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func (fc FilterChain) Match(msg Message) bool {
}

for _, filter := range fc {
if !filter.MessageFilter(msg) {
if !filter.Filter(msg) {
return false
}
}
Expand Down

0 comments on commit 938607e

Please sign in to comment.