Skip to content
This repository has been archived by the owner on Jan 2, 2023. It is now read-only.

Update createRequest warning message to indicate a possible solution #5101

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/lib/multipageloader.cc
Expand Up @@ -77,7 +77,8 @@ QNetworkReply * MyNetworkAccessManager::createRequest(Operation op, const QNetwo
if (disposed)
{
emit warning("Received createRequest signal on a disposed ResourceObject's NetworkAccessManager. "
"This might be an indication of an iframe taking too long to load.");
"This might be an indication of an iframe taking too long to load or --javascript-delay "
"being set too short.");
// Needed to avoid race conditions by spurious network requests
// by scripts or iframes taking too long to load.
QNetworkRequest r2 = req;
Expand Down