File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -124,7 +124,8 @@ bool CookieJar::insertCookieInternal(const QNetworkCookie& cookie, bool notify_o
124
124
125
125
#if defined(USE_WEBENGINE)
126
126
if (notify_others) {
127
- m_webEngineCookies->setCookie (cookie);
127
+ // NOTE: Make sync one-way for now, it crashes.
128
+ // m_webEngineCookies->setCookie(cookie);
128
129
}
129
130
#else
130
131
Q_UNUSED (notify_others)
@@ -142,7 +143,7 @@ bool CookieJar::updateCookieInternal(const QNetworkCookie& cookie, bool notify_o
142
143
143
144
#if defined(USE_WEBENGINE)
144
145
if (notify_others) {
145
- m_webEngineCookies->setCookie (cookie);
146
+ // m_webEngineCookies->setCookie(cookie);
146
147
}
147
148
#else
148
149
Q_UNUSED (notify_others)
@@ -160,7 +161,7 @@ bool CookieJar::deleteCookieInternal(const QNetworkCookie& cookie, bool notify_o
160
161
161
162
#if defined(USE_WEBENGINE)
162
163
if (notify_others) {
163
- m_webEngineCookies->deleteCookie (cookie);
164
+ // m_webEngineCookies->deleteCookie(cookie);
164
165
}
165
166
#else
166
167
Q_UNUSED (notify_others)
You can’t perform that action at this time.
0 commit comments