From fa7ad4f2344c72a8754a6d7b4489082fc81bb930 Mon Sep 17 00:00:00 2001 From: Jedi18 Date: Fri, 29 Jan 2021 00:09:11 +0530 Subject: Shifted fetching of global username fom timeline model to user profile --- src/timeline/TimelineModel.cpp | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) (limited to 'src/timeline/TimelineModel.cpp') diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index a25e77fd..73077508 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -22,7 +22,6 @@ #include "TimelineViewManager.h" #include "Utils.h" #include "dialogs/RawMessage.h" -#include Q_DECLARE_METATYPE(QModelIndex) @@ -261,17 +260,6 @@ TimelineModel::TimelineModel(TimelineViewManager *manager, QString room_id, QObj connect(&events, &EventStore::updateFlowEventId, this, [this](std::string event_id) { this->updateFlowEventId(event_id); }); - - const auto userid = utils::localUser().toStdString(); - http::client()->get_profile( - userid, [this](const mtx::responses::Profile &res, mtx::http::RequestErr err) { - if (err) { - nhlog::net()->warn("failed to retrieve own profile info"); - return; - } - - globalUsername = QString::fromStdString(res.display_name); - }); } QHash @@ -814,8 +802,7 @@ 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)); } else { emit openProfile(new UserProfile(room_id_, userid, manager_, this)); } -- cgit 1.5.1