diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/room.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 42d63574..128a4f48 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -302,7 +302,8 @@ QImage Room::avatar(int dimension) QImage Room::avatar(int width, int height) { if (!d->avatar.url().isEmpty()) - return d->avatar.get(connection(), width, height, [=] { emit avatarChanged(); }); + return d->avatar.get(connection(), width, height, + [=] { emit avatarChanged(); }); // Use the other side's avatar for 1:1's if (d->membersMap.size() == 2) |