diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/app.c | 3 | ||||
-rw-r--r-- | src/gmrequest.c | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -667,7 +667,8 @@ iBool handleCommand_App(const char *cmd) { | |||
667 | const iString *url = collectNewCStr_String(suffixPtr_Command(cmd, "url")); | 667 | const iString *url = collectNewCStr_String(suffixPtr_Command(cmd, "url")); |
668 | iUrl parts; | 668 | iUrl parts; |
669 | init_Url(&parts, url); | 669 | init_Url(&parts, url); |
670 | if (equalCase_Rangecc(parts.scheme, "http") || equalCase_Rangecc(parts.scheme, "https")) { | 670 | if (isEmpty_String(&d->httpProxy) && |
671 | (equalCase_Rangecc(parts.scheme, "http") || equalCase_Rangecc(parts.scheme, "https"))) { | ||
671 | openInDefaultBrowser_App(url); | 672 | openInDefaultBrowser_App(url); |
672 | return iTrue; | 673 | return iTrue; |
673 | } | 674 | } |
diff --git a/src/gmrequest.c b/src/gmrequest.c index 24732650..137e8303 100644 --- a/src/gmrequest.c +++ b/src/gmrequest.c | |||
@@ -194,7 +194,7 @@ static void checkServerCertificate_GmRequest_(iGmRequest *d) { | |||
194 | const iTlsCertificate *cert = serverCertificate_TlsRequest(d->req); | 194 | const iTlsCertificate *cert = serverCertificate_TlsRequest(d->req); |
195 | d->resp.certFlags = 0; | 195 | d->resp.certFlags = 0; |
196 | if (cert) { | 196 | if (cert) { |
197 | const iRangecc domain = urlHost_String(&d->url); | 197 | const iRangecc domain = range_String(hostName_Address(address_TlsRequest(d->req))); |
198 | d->resp.certFlags |= available_GmCertFlag; | 198 | d->resp.certFlags |= available_GmCertFlag; |
199 | if (!isExpired_TlsCertificate(cert)) { | 199 | if (!isExpired_TlsCertificate(cert)) { |
200 | d->resp.certFlags |= timeVerified_GmCertFlag; | 200 | d->resp.certFlags |= timeVerified_GmCertFlag; |