Merge pull request #23018 from nextcloud/backport/23016/stable20
[stable20] Don't log a known shared section
This commit is contained in:
commit
724276c7a7
|
@ -122,7 +122,7 @@ class Manager implements IManager {
|
|||
|
||||
$sectionID = $section->getID();
|
||||
|
||||
if (isset($this->sections[$type][$sectionID])) {
|
||||
if ($sectionID !== 'connected-accounts' && isset($this->sections[$type][$sectionID])) {
|
||||
$this->log->logException(new \InvalidArgumentException('Section with the same ID already registered: ' . $sectionID . ', class: ' . $class), ['level' => ILogger::INFO]);
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue