Browse Source

fix(OCM): Fix OCM provider discovery for servers without beautiful URLs

Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling 6 months ago
parent
commit
4424918313
1 changed files with 4 additions and 1 deletions
  1. 4 1
      lib/private/OCM/OCMDiscoveryService.php

+ 4 - 1
lib/private/OCM/OCMDiscoveryService.php

@@ -69,6 +69,9 @@ class OCMDiscoveryService implements IOCMDiscoveryService {
 	 */
 	public function discover(string $remote, bool $skipCache = false): IOCMProvider {
 		$remote = rtrim($remote, '/');
+		if (str_ends_with($remote, '/index.php')) {
+			$remote = substr($remote, 0, -10);
+		}
 
 		if (!$skipCache) {
 			try {
@@ -84,7 +87,7 @@ class OCMDiscoveryService implements IOCMDiscoveryService {
 		$client = $this->clientService->newClient();
 		try {
 			$response = $client->get(
-				$remote . '/ocm-provider/',
+				$remote . '/index.php/ocm-provider/',
 				[
 					'timeout' => 10,
 					'verify' => !$this->config->getSystemValueBool('sharing.federation.allowSelfSignedCertificates'),