From 6a5198d23412a6d11f78cdef71850e578ca6f8c0 Mon Sep 17 00:00:00 2001 From: "Felix (xq) Queißner" Date: Fri, 19 Jun 2020 10:37:20 +0200 Subject: Allows user to skip over invalid TLS connections and fetch the content anyways. --- src/gopherclient.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/gopherclient.cpp') diff --git a/src/gopherclient.cpp b/src/gopherclient.cpp index 2f6f31d..49ef29d 100644 --- a/src/gopherclient.cpp +++ b/src/gopherclient.cpp @@ -24,8 +24,10 @@ bool GopherClient::supportsScheme(const QString &scheme) const return (scheme == "gopher"); } -bool GopherClient::startRequest(const QUrl &url) +bool GopherClient::startRequest(const QUrl &url, RequestOptions options) { + Q_UNUSED(options) + if(isInProgress()) return false; -- cgit v1.2.3