Browse Source
Merge pull request #14141 from nextcloud/bugfix/noid/fix-federation-from-main-to-other
fix(federation): Fix protocol handling of invitations
pull/14120/head
Anna
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
lib/Federation/CloudFederationProviderTalk.php
|
|
|
@ -648,7 +648,7 @@ class CloudFederationProviderTalk implements ICloudFederationProvider, ISignedCl |
|
|
|
} |
|
|
|
|
|
|
|
try { |
|
|
|
$invite = $this->invitationMapper->getByRemoteServerAndAccessToken($remoteServerUrl, $sharedSecret); |
|
|
|
$invite = $this->invitationMapper->getByRemoteServerAndAccessToken($payload['remoteServerUrl'], $sharedSecret); |
|
|
|
return $invite->getInviterCloudId(); |
|
|
|
} catch (DoesNotExistException) { |
|
|
|
} |
|
|
|
|