Skip to content

Commit

Permalink
Increased VK image resolution
Browse files Browse the repository at this point in the history
Tried different values but anything less than this will seem blurred
even on Jolla 1.
  • Loading branch information
Antti Seppälä committed Aug 19, 2015
1 parent 20d19bf commit 49ccc29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vk/vk-posts/vkpostsyncadaptor.cpp
Expand Up @@ -212,7 +212,7 @@ void VKPostSyncAdaptor::saveVKPostFromObject(int accountId, const QJsonObject &p
if (type == QStringLiteral("photo")
|| type == QStringLiteral("posted_photo")
|| type == QStringLiteral("graffiti")) {
QString src = typedValue.value(QStringLiteral("photo_75")).toString();
QString src = typedValue.value(QStringLiteral("photo_1280")).toString();
if (!src.isEmpty()) {
images.append(qMakePair(src, SocialPostImage::Photo));
}
Expand Down

0 comments on commit 49ccc29

Please sign in to comment.