aboutsummaryrefslogtreecommitdiff
path: root/src/cachehandler.cpp
diff options
context:
space:
mode:
authorMike Skec <skec@protonmail.ch>2021-01-07 09:12:56 +1100
committerFelix Queißner <felix@ib-queissner.de>2021-01-07 09:44:02 +0100
commit772cad15cef23559986869733f541b5f3ea4d130 (patch)
treeaac6034a69b78354597027faab80692daeb5443c /src/cachehandler.cpp
parent9ed3c1693fbd777f64d390e5b2d795fa285ffb85 (diff)
uniform urls only used for identification now
the destinations themselves are left untouched
Diffstat (limited to 'src/cachehandler.cpp')
-rw-r--r--src/cachehandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cachehandler.cpp b/src/cachehandler.cpp
index bd4c7e5..5003b1d 100644
--- a/src/cachehandler.cpp
+++ b/src/cachehandler.cpp
@@ -18,7 +18,7 @@ void CacheHandler::push(const QUrl &u, const QByteArray &body, const MimeType &m
return;
}
- this->page_cache[urlstr] = std::make_shared<CachedPage>(url, body, mime);
+ this->page_cache[urlstr] = std::make_shared<CachedPage>(u, body, mime);
qDebug() << "Pushed page to cache: " << url;