Skip to content

Commit

Permalink
missing bit from f57d93.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Sep 11, 2024
1 parent 072da13 commit 9addd57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func (r *Relay) ConnectWithTLS(ctx context.Context, tlsConfig *tls.Config) error
continue
} else {
// check if the event matches the desired filter, ignore otherwise
if !subscription.Filters.Match(&env.Event) {
if !subscription.match(&env.Event) {
InfoLogger.Printf("{%s} filter does not match: %v ~ %v\n", r.URL, subscription.Filters, env.Event)
continue
}
Expand Down

0 comments on commit 9addd57

Please sign in to comment.