Skip to content
Snippets Groups Projects
Commit 49270d10 authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Update matrix-structs library

parent 97e6fc6a
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ ExternalProject_Add(
MatrixStructs
GIT_REPOSITORY https://github.com/mujx/matrix-structs
GIT_TAG 850100c0ac2b5a04720b2a1f09270749bf99f7dd
GIT_TAG 701eb5b06c370c23bca35a957f5a208c2115b52f
BUILD_IN_SOURCE 1
SOURCE_DIR ${MATRIX_STRUCTS_ROOT}
......
......@@ -9,7 +9,7 @@ constexpr int IconSize = 13;
InviteeItem::InviteeItem(mtx::identifiers::User user, QWidget *parent)
: QWidget{parent}
, user_{QString::fromStdString(user.toString())}
, user_{QString::fromStdString(user.to_string())}
{
auto topLayout_ = new QHBoxLayout(this);
topLayout_->setSpacing(0);
......
......@@ -154,7 +154,7 @@ MatrixClient::login(const QString &username, const QString &password) noexcept
if (server_.port() > 0)
hostname = QString("%1:%2").arg(server_.host()).arg(server_.port());
emit loginSuccess(QString::fromStdString(login.user_id.toString()),
emit loginSuccess(QString::fromStdString(login.user_id.to_string()),
hostname,
QString::fromStdString(login.access_token));
} catch (std::exception &e) {
......@@ -228,7 +228,7 @@ MatrixClient::registerUser(const QString &user,
// Try to parse a regular register response.
try {
mtx::responses::Register res = nlohmann::json::parse(data);
emit registerSuccess(QString::fromStdString(res.user_id.toString()),
emit registerSuccess(QString::fromStdString(res.user_id.to_string()),
QString::fromStdString(res.user_id.hostname()),
QString::fromStdString(res.access_token));
} catch (const std::exception &e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment