Revert "Downoad all images in the background and keep them in memory"

This reverts commit 6e450b72f1.
This commit is contained in:
Jeena 2016-10-24 07:51:15 +02:00
parent eb40e97357
commit 5d053551d8
3 changed files with 5 additions and 62 deletions

View file

@ -62,7 +62,7 @@ void TinyTinyRSS::reload()
for(int i = 0; i < posts.count(); i++)
{
QJsonObject postJson = posts.at(i).toObject();
Post *post = new Post(postJson, mNetworkManager, this);
Post *post = new Post(postJson, this);
connect(post, SIGNAL(readChanged(bool)), this, SLOT(onPostReadChanged(bool)));
mPosts.append(post);
}