View Issue Details

IDProjectCategoryView StatusLast Update
0006463JEDI VCL00 JVCL Componentspublic2018-08-30 14:12
ReporterGeroldAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionno change required 
Product VersionDaily / GIT 
Target VersionFixed in Version 
Summary0006463: HTTPS support in TJvHttpUrlGrabber
DescriptionI guess there is one error in class function TJvHttpsUrlGrabber.CanGrab.

class function TJvHttpsUrlGrabber.CanGrab(const Url: string): Boolean;
begin
  Result := LowerCase(Copy(Url, 1, 7)) = cHTTPsPrefix;
end;

cHTTPsPrefix has a length of 8 characters. So the function will always return false. Should be:

Result := LowerCase(Copy(Url, 1, 8)) = cHTTPsPrefix;

But even if I change it, it does not download.


Additional InformationDaily: 2015-10-21
TagsNo tags attached.

Activities

obones

2018-07-18 15:38

administrator   ~0021482

Could you check if the issue is still present in the latest GIT content? If yes, please provide the zipped sources of an application showing this.

Gerold

2018-08-03 10:20

reporter   ~0021570

Solved

Issue History

Date Modified Username Field Change
2015-10-23 15:26 Gerold New Issue
2018-07-18 15:38 obones Note Added: 0021482
2018-07-18 15:38 obones Status new => feedback
2018-08-03 10:20 Gerold Note Added: 0021570
2018-08-30 14:12 obones Status feedback => resolved
2018-08-30 14:12 obones Resolution open => no change required
2018-08-30 14:12 obones Assigned To => obones