|
|
|
|
@ -38,6 +38,7 @@ use OCP\Dashboard\IManager;
|
|
|
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
|
|
|
|
use OCP\ILogger;
|
|
|
|
|
use Throwable;
|
|
|
|
|
use function array_shift;
|
|
|
|
|
|
|
|
|
|
class RegistrationContext {
|
|
|
|
|
|
|
|
|
|
@ -399,7 +400,7 @@ class RegistrationContext {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($this->aliases as $registration) {
|
|
|
|
|
while (($registration = array_shift($this->aliases)) !== null) {
|
|
|
|
|
try {
|
|
|
|
|
$apps[$registration['appId']]
|
|
|
|
|
->getContainer()
|
|
|
|
|
@ -416,7 +417,7 @@ class RegistrationContext {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($this->parameters as $registration) {
|
|
|
|
|
while (($registration = array_shift($this->parameters)) !== null) {
|
|
|
|
|
try {
|
|
|
|
|
$apps[$registration['appId']]
|
|
|
|
|
->getContainer()
|
|
|
|
|
|