1 files changed, 2 insertions, 2 deletions
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp
index 41c0b40e..a25e77fd 100644
--- a/src/timeline/TimelineModel.cpp
+++ b/src/timeline/TimelineModel.cpp
@@ -814,8 +814,8 @@ void
TimelineModel::openUserProfile(QString userid, bool global)
{
if (global) {
- emit openProfile(new UserProfile("",utils::localUser(),
- manager_, this, globalUsername));
+ emit openProfile(
+ new UserProfile("", utils::localUser(), manager_, this, globalUsername));
} else {
emit openProfile(new UserProfile(room_id_, userid, manager_, this));
}
|