Merge pull request #23016 from nextcloud/bugfix/noid/dont-log-a-known-shared-section

Don't log a known shared section
This commit is contained in:
Joas Schilling 2020-09-23 13:01:50 +02:00 committed by GitHub
commit f62e880a6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}