Filter out metaLevel mismatches

This commit is contained in:
Tony Garnock-Jones 2014-08-02 00:25:18 -07:00
parent e0def26f6c
commit f46fd52239
1 changed files with 1 additions and 0 deletions

View File

@ -181,6 +181,7 @@ function finalizeActor(behavior, chunks) {
case 'participant':
if (chunk.handler
&& (e.type === 'message')
&& (e.metaLevel === chunk.options.metaLevel)
&& (e.isFeedback === (chunk.type === 'advertise')))
{
var matchResult = Route.matchPattern(e.message, projections[i]);