Skip to content

Commit

Permalink
fix(ocm): test
Browse files Browse the repository at this point in the history
Signed-off-by: Maxence Lange <[email protected]>
  • Loading branch information
ArtificialOwl committed Nov 16, 2024
1 parent 6e45b8c commit 4d18c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/OCM/OCMDiscoveryService.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4d18c8e

Please sign in to comment.