Skip to content

Commit

Permalink
Fix bug ActivityNoticeSerializer class: getAttributeConfig returns wr…
Browse files Browse the repository at this point in the history
…ong value for 'notListenAttributes'
  • Loading branch information
Bui Sy Nguyen committed Aug 21, 2015
1 parent 20e7747 commit 6a4bf96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fproject/amqp/ActivityNoticeSerializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private function getAttributeConfig($actionConfig, $actionAttributes)
if(is_string($includeAttributes))
$includeAttributes = explode(',', $includeAttributes);
}
if(array_key_exists('listenAttributes', $actionConfig))
if(array_key_exists('notListenAttributes', $actionConfig))
{
$excludeAttributes = $actionConfig['notListenAttributes'];
if(is_string($excludeAttributes))
Expand Down

0 comments on commit 6a4bf96

Please sign in to comment.