diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-10-01 19:12:33 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-10-01 19:12:33 +0200 |
commit | 30dbaeb2b175c1e67f57aba748ced1a2280fb56d (patch) | |
tree | b84cd3b4d2eaa94c3b91fb1f1cb75e5a8733038e /src/plugins | |
parent | d760a699bebd950644aa7a7aa006ce698a995e47 (diff) |
Matrix: add room name and avatar of the current room at the top
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/Matrix.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/Matrix.cpp b/src/plugins/Matrix.cpp index 257feb4..6d89ff4 100644 --- a/src/plugins/Matrix.cpp +++ b/src/plugins/Matrix.cpp @@ -1174,6 +1174,7 @@ namespace QuickMedia { request_data["type"] = "m.login.password"; request_data["identifier"] = std::move(identifier_json); request_data["password"] = password; + request_data["initial_device_display_name"] = "QuickMedia"; // :^) Json::StreamWriterBuilder builder; builder["commentStyle"] = "None"; |