mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 09:13:19 -04:00
Fix condition
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
556b958af2
commit
cfb40941c4
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ class ProviderFactory implements IProviderFactory {
|
|||
$provider = $this->defaultShareProvider();
|
||||
} else if ($id === 'ocFederatedSharing') {
|
||||
$provider = $this->federatedShareProvider();
|
||||
} else if ($id = 'ocMailShare') {
|
||||
} else if ($id === 'ocMailShare') {
|
||||
$provider = $this->getShareByMailProvider();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue