Skip to content

Commit

Permalink
Merge 9b2a49c into 0ca4d4e
Browse files Browse the repository at this point in the history
  • Loading branch information
rage311 committed Jul 4, 2019
2 parents 0ca4d4e + 9b2a49c commit a91b4ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/App/perlbrew.pm
Expand Up @@ -948,7 +948,7 @@ sub perl_release {
}
}

my $json = http_get("https://fastapi.metacpan.org/v1/release/_search?size=1&q=name:perl-${version}");
my $json = http_get("'https://fastapi.metacpan.org/v1/release/_search?size=1&q=name:perl-${version}'");

my $result;
unless ($json and $result = decode_json($json)->{hits}{hits}[0]) {
Expand Down Expand Up @@ -1024,7 +1024,7 @@ sub release_detail_perl_remote {
}
}
my $json = http_get("https://fastapi.metacpan.org/v1/release/_search?size=1&q=name:perl-${version}");
my $json = http_get("'https://fastapi.metacpan.org/v1/release/_search?size=1&q=name:perl-${version}'");
my $result;
unless ($json and $result = decode_json($json)->{hits}{hits}[0]) {
Expand Down

0 comments on commit a91b4ab

Please sign in to comment.