View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006463 | JEDI VCL | 00 JVCL Components | public | 2015-10-23 15:26 | 2018-08-30 14:12 |
Reporter | Gerold | Assigned To | obones | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | no change required | ||
Product Version | Daily / GIT | ||||
Target Version | Fixed in Version | ||||
Summary | 0006463: HTTPS support in TJvHttpUrlGrabber | ||||
Description | I 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 Information | Daily: 2015-10-21 | ||||
Tags | No tags attached. | ||||
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 |