Correctly match the subjects to the parameters

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/2312/head
Joas Schilling 9 years ago
parent 9f915e061c
commit f067d0ee66
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
  1. 4
      apps/sharebymail/lib/Activity.php

@ -164,12 +164,12 @@ class Activity implements IProvider {
$parameters = $event->getSubjectParameters();
switch ($subject) {
case self::SUBJECT_SHARED_EMAIL_BY:
case self::SUBJECT_SHARED_EMAIL_SELF:
return [
'file' => $this->generateFileParameter((int) $event->getObjectId(), $parameters[0]),
'email' => $this->generateEmailParameter($parameters[1]),
];
case self::SUBJECT_SHARED_EMAIL_SELF:
case self::SUBJECT_SHARED_EMAIL_BY:
return [
'file' => $this->generateFileParameter((int) $event->getObjectId(), $parameters[0]),
'email' => $this->generateEmailParameter($parameters[1]),

Loading…
Cancel
Save