1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/UserProfile.cpp b/src/ui/UserProfile.cpp
index cbeb1f4f..ca222d8b 100644
--- a/src/ui/UserProfile.cpp
+++ b/src/ui/UserProfile.cpp
@@ -38,7 +38,11 @@ UserProfile::UserProfile(const QString &roomid,
this,
&UserProfile::setGlobalUsername,
Qt::QueuedConnection);
- connect(this, &UserProfile::verificationStatiChanged, &UserProfile::updateVerificationStatus);
+ connect(this,
+ &UserProfile::verificationStatiChanged,
+ this,
+ &UserProfile::updateVerificationStatus,
+ Qt::QueuedConnection);
if (isGlobalUserProfile()) {
getGlobalProfileData();
|