diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-06-19 21:28:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-19 21:28:29 +0200 |
commit | 6ec8042d881377d1dc690ac057a723afb16f39e8 (patch) | |
tree | 54684ac39a19bb5dccbd19eb1669c44835277495 /lib | |
parent | 59093abfaf578b4a677bbcbf4684c2928cd5e966 (diff) | |
parent | 9cf32a39992993a784c1fe1b4ed976a7b160fd5a (diff) | |
download | nextcloud-server-6ec8042d881377d1dc690ac057a723afb16f39e8.tar.gz nextcloud-server-6ec8042d881377d1dc690ac057a723afb16f39e8.zip |
Merge pull request #21469 from nextcloud/bugfix/noid/event-service-listener-registration
Fix event service listener registration
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/AppFramework/Bootstrap/RegistrationContext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Bootstrap/RegistrationContext.php b/lib/private/AppFramework/Bootstrap/RegistrationContext.php index de2f80a2cc2..340012c8b1b 100644 --- a/lib/private/AppFramework/Bootstrap/RegistrationContext.php +++ b/lib/private/AppFramework/Bootstrap/RegistrationContext.php @@ -234,7 +234,7 @@ class RegistrationContext { $registration['priority'] ); } else { - $eventDispatcher->addListener( + $eventDispatcher->addServiceListener( $registration['event'], $registration['listener'] ); |