Merge pull request #15638 from nextcloud/bugfix/7965/sharing-hide-if-empty
Only show sharing section if it has content
This commit is contained in:
commit
ac92603014
2 changed files with 7 additions and 0 deletions
|
@ -80,6 +80,9 @@ class Personal implements ISettings {
|
|||
* @since 9.1
|
||||
*/
|
||||
public function getSection() {
|
||||
if (!$this->federatedShareProvider->isOutgoingServer2serverShareEnabled()) {
|
||||
return null;
|
||||
}
|
||||
return 'sharing';
|
||||
}
|
||||
|
||||
|
|
|
@ -171,6 +171,10 @@ class Manager implements IManager {
|
|||
continue;
|
||||
}
|
||||
|
||||
if ($setting->getSection() === null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($this->settings[$settingsType][$setting->getSection()])) {
|
||||
$this->settings[$settingsType][$setting->getSection()] = [];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue