mirror of https://gitlab.com/basile.b/dexed.git
back to https for code.dlang.org
This commit is contained in:
parent
5156b98d69
commit
ebcbd9cf5d
|
@ -334,7 +334,7 @@ procedure TDubPackageQueryForm.getList(sender: TObject);
|
|||
begin
|
||||
if assigned(fList) then
|
||||
fList.free;
|
||||
simpleGet('http://code.dlang.org/api/packages/search', fList);
|
||||
simpleGet('https://code.dlang.org/api/packages/search', fList);
|
||||
if assigned(fList) then
|
||||
fillList
|
||||
else
|
||||
|
@ -384,7 +384,7 @@ begin
|
|||
else
|
||||
begin
|
||||
result := '';
|
||||
if not simpleGet('http://code.dlang.org/api/packages/' + packageName + '/latest', result) then
|
||||
if not simpleGet('https://code.dlang.org/api/packages/' + packageName + '/latest', result) then
|
||||
result := 'master';
|
||||
if (result.length >= 7) and (result[2] in ['0'..'9']) then
|
||||
result := result[2..result.length-1]
|
||||
|
|
Loading…
Reference in New Issue