diff options
author | dec05eba <dec05eba@protonmail.com> | 2018-05-07 06:36:49 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2018-05-07 06:36:52 +0200 |
commit | 440b0540f57bb9410ee270eea4829365fbbbbf89 (patch) | |
tree | f23577a90ccb4185728d0a9c4dd396a35456fadf | |
parent | 9ebc3e3f5cf4847239d04cf5b3b01d0b1855a039 (diff) |
Limit avatar size to 1mb
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | src/MessageBoard.cpp | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -1,6 +1,6 @@ # DcHaT -Decentralized chat using odhtdb. -Currently only runs on GNU/Linux. +Decentralized chat using odhtdb. Currently only runs on GNU/Linux. +Max avatar size is 1mb # Dependencies opendht, boost, libnsgif, mpv, sfml ## GNU/Linux specific diff --git a/src/MessageBoard.cpp b/src/MessageBoard.cpp index 8572873..5e101aa 100644 --- a/src/MessageBoard.cpp +++ b/src/MessageBoard.cpp @@ -126,7 +126,8 @@ namespace dchat } } - const ContentByUrlResult avatarResult = cache.getContentByUrl(message->user->avatarUrl); + // Max avatar size = 1mb + const ContentByUrlResult avatarResult = cache.getContentByUrl(message->user->avatarUrl, 1024 * 1024); if(avatarResult.type == ContentByUrlResult::Type::CACHED) { sf::Shader *circleShader = ResourceCache::getShader("shaders/circleMask.glsl", sf::Shader::Fragment); |