[ActivityPub] Revert usage of bitwise-operator & in the inbox_handler class.

This commit is contained in:
tenma 2019-10-17 20:25:00 +01:00 committed by Diogo Peralta Cordeiro
parent 9088e58a64
commit 4901126519
1 changed files with 4 additions and 4 deletions

View File

@ -94,13 +94,13 @@ class Activitypub_inbox_handler
$valid = true;
switch ($this->activity['type']) {
case 'Accept':
$valid &= Activitypub_accept::validate_object($this->object);
$valid = Activitypub_accept::validate_object($this->object);
break;
case 'Create':
$valid &= Activitypub_create::validate_object($this->object);
$valid = Activitypub_create::validate_object($this->object);
break;
case 'Delete':
$valid &= Activitypub_delete::validate_object($this->object);
$valid = Activitypub_delete::validate_object($this->object);
break;
case 'Follow':
case 'Like':
@ -110,7 +110,7 @@ class Activitypub_inbox_handler
}
break;
case 'Undo':
$valid &= Activitypub_undo::validate_object($this->object);
$valid = Activitypub_undo::validate_object($this->object);
break;
default:
throw new Exception('Unknown Activity Type.');