Skip to content

Commit

Permalink
[ISSUE #9227] fix subscriber scopeMatches (#9233)
Browse files Browse the repository at this point in the history
  • Loading branch information
ruansheng8 committed Sep 28, 2022
1 parent 45165f7 commit 71d7d36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ public boolean ignoreExpireEvent() {
* @return Whether the event's scope matches current subscriber
*/
public boolean scopeMatches(T event) {
return event.scope() == null;
return true;
}
}

0 comments on commit 71d7d36

Please sign in to comment.