Skip to content

Commit

Permalink
Merge pull request #31577 from nextcloud/fix/register-talk-broker
Browse files Browse the repository at this point in the history
Fix unknown Talk broker interface
  • Loading branch information
nickvergessen authored Mar 15, 2022
2 parents a40dac9 + 282bede commit a626307
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/private/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
use OC\Share20\ShareHelper;
use OC\SystemTag\ManagerFactory as SystemTagManagerFactory;
use OC\Tagging\TagMapper;
use OC\Talk\Broker;
use OC\Template\JSCombiner;
use OCA\Theming\ImageManager;
use OCA\Theming\ThemingDefaults;
Expand Down Expand Up @@ -234,6 +235,7 @@
use OCP\Share\IShareHelper;
use OCP\SystemTag\ISystemTagManager;
use OCP\SystemTag\ISystemTagObjectMapper;
use OCP\Talk\IBroker;
use OCP\User\Events\BeforePasswordUpdatedEvent;
use OCP\User\Events\BeforeUserCreatedEvent;
use OCP\User\Events\BeforeUserDeletedEvent;
Expand Down Expand Up @@ -1400,6 +1402,8 @@ public function __construct($webRoot, \OC\Config $config) {

$this->registerAlias(\OCP\UserStatus\IManager::class, \OC\UserStatus\Manager::class);

$this->registerAlias(IBroker::class, Broker::class);

$this->connectDispatcher();
}

Expand Down

0 comments on commit a626307

Please sign in to comment.