From ebcbd9cf5d8acceb9002989d7ee1356369a339af Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Wed, 3 Apr 2019 18:46:35 +0200 Subject: [PATCH] back to https for code.dlang.org --- src/u_libmaneditor.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/u_libmaneditor.pas b/src/u_libmaneditor.pas index ac9871b1..45a7f6cb 100644 --- a/src/u_libmaneditor.pas +++ b/src/u_libmaneditor.pas @@ -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]