summary refs log tree commit diff
path: root/src/timeline/TimelineModel.cpp
diff options
context:
space:
mode:
authorJedi18 <targetakhil@gmail.com>2021-02-02 17:24:08 +0530
committerJedi18 <targetakhil@gmail.com>2021-02-02 17:24:08 +0530
commitcd3f719e43e06749a09a8e9eff20c4f2a0615742 (patch)
treefd1dfa75ad43cc51f691f4f3f6a84565898b028d /src/timeline/TimelineModel.cpp
parentadd error message and update avatars on avatar change in timeline and user pr... (diff)
downloadnheko-cd3f719e43e06749a09a8e9eff20c4f2a0615742.tar.xz
add loading indicator
Diffstat (limited to 'src/timeline/TimelineModel.cpp')
-rw-r--r--src/timeline/TimelineModel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp
index a4d551f5..968ec3c7 100644
--- a/src/timeline/TimelineModel.cpp
+++ b/src/timeline/TimelineModel.cpp
@@ -803,7 +803,7 @@ TimelineModel::openUserProfile(QString userid, bool global)
 {
         UserProfile *userProfile = new UserProfile(global ? "" : room_id_, userid, manager_, this);
         connect(
-          this, &TimelineModel::roomAvatarUrlChanged, userProfile, &UserProfile::avatarUrlChanged);
+          this, &TimelineModel::roomAvatarUrlChanged, userProfile, &UserProfile::updateAvatarUrl);
         emit openProfile(userProfile);
 }