From 4d18c8e89cf7b443baae5bb85a4c6eea28c35c1b Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Sat, 16 Nov 2024 15:16:37 -0100 Subject: [PATCH] fix(ocm): test Signed-off-by: Maxence Lange --- lib/private/OCM/OCMDiscoveryService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/OCM/OCMDiscoveryService.php b/lib/private/OCM/OCMDiscoveryService.php index dd643a36c52fe..ed2aa9e00b751 100644 --- a/lib/private/OCM/OCMDiscoveryService.php +++ b/lib/private/OCM/OCMDiscoveryService.php @@ -47,7 +47,7 @@ public function __construct( public function discover(string $remote, bool $skipCache = false): IOCMProvider { $remote = rtrim($remote, '/'); if (!str_starts_with($remote, 'http')) { - $remote = 'https://' . $remote; + $remote = 'http://' . $remote; } if (!$skipCache) {