summaryrefslogtreecommitdiffstats
path: root/src/core/content_browser_client_qt.cpp
diff options
context:
space:
mode:
authorMartin Negyokru <negyokru@inf.u-szeged.hu>2022-10-03 12:20:00 +0200
committerMartin Negyokru <negyokru@inf.u-szeged.hu>2022-10-03 14:04:35 +0200
commit64b7da9dab82713fdcb2e03d8a2715421eae5685 (patch)
treebc2b481d3353f26187656c0f8803a01285b5e248 /src/core/content_browser_client_qt.cpp
parent6bd06fdb35f4ad973a2abaaa35b5c12cbca0d37a (diff)
Do not intercept websocket connection when there is no associated frame
This fix is based on chrome's implementation. Fixes: QTBUG-107144 Pick-to: 6.4 Change-Id: If042e4156b8a4bdb27a210c4db94e3a6198aed7d Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'src/core/content_browser_client_qt.cpp')
-rw-r--r--src/core/content_browser_client_qt.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/content_browser_client_qt.cpp b/src/core/content_browser_client_qt.cpp
index a1868715c..b6e6748c8 100644
--- a/src/core/content_browser_client_qt.cpp
+++ b/src/core/content_browser_client_qt.cpp
@@ -1245,8 +1245,7 @@ ContentBrowserClientQt::WillCreateURLLoaderRequestInterceptors(content::Navigati
bool ContentBrowserClientQt::WillInterceptWebSocket(content::RenderFrameHost *frame)
{
- Q_UNUSED(frame);
- return true; // It is probably not worth it to only intercept when interceptors are installed
+ return frame != nullptr;
}
QWebEngineUrlRequestInterceptor *getProfileInterceptorFromFrame(content::RenderFrameHost *frame)