diff options
| author | Mike Skec <skec@protonmail.ch> | 2021-01-07 09:12:56 +1100 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2021-01-07 09:44:02 +0100 |
| commit | 772cad15cef23559986869733f541b5f3ea4d130 (patch) | |
| tree | aac6034a69b78354597027faab80692daeb5443c /src/cachehandler.cpp | |
| parent | 9ed3c1693fbd777f64d390e5b2d795fa285ffb85 (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.cpp | 2 |
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; |
