Skip to content

Commit

Permalink
Merge pull request #49900 from nextcloud/fix/ocm-host
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Dec 17, 2024
2 parents 164af62 + b356cba commit 8e7ce5c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/private/OCM/OCMDiscoveryService.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

namespace OC\OCM;

use GuzzleHttp\Exception\ConnectException;
use JsonException;
use OCP\AppFramework\Http;
use OCP\Http\Client\IClientService;
Expand Down Expand Up @@ -52,6 +53,14 @@ public function __construct(
*/
public function discover(string $remote, bool $skipCache = false): IOCMProvider {
$remote = rtrim($remote, '/');
if (!str_starts_with($remote, 'http://') && !str_starts_with($remote, 'https://')) {
// if scheme not specified, we test both;
try {
return $this->discover('https://' . $remote, $skipCache);
} catch (OCMProviderException|ConnectException) {
return $this->discover('http://' . $remote, $skipCache);
}
}

if (!$skipCache) {
try {
Expand Down

0 comments on commit 8e7ce5c

Please sign in to comment.