Use the wrapper to get the parameters which was added in #6369
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
db56ea3e70
commit
4ca0223f37
|
@ -113,7 +113,7 @@ class Provider implements IProvider {
|
|||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
protected function parseShortVersion(IEvent $event) {
|
||||
$subjectParameters = $event->getSubjectParameters();
|
||||
$subjectParameters = $this->getSubjectParameters($event);
|
||||
|
||||
if ($event->getSubject() === 'add_comment_subject') {
|
||||
if ($subjectParameters['actor'] === $this->activityManager->getCurrentUserId()) {
|
||||
|
@ -139,7 +139,7 @@ class Provider implements IProvider {
|
|||
* @throws \InvalidArgumentException
|
||||
*/
|
||||
protected function parseLongVersion(IEvent $event) {
|
||||
$subjectParameters = $event->getSubjectParameters();
|
||||
$subjectParameters = $this->getSubjectParameters($event);
|
||||
|
||||
if ($event->getSubject() === 'add_comment_subject') {
|
||||
if ($subjectParameters['actor'] === $this->activityManager->getCurrentUserId()) {
|
||||
|
|
Loading…
Reference in New Issue