[Room] fix users generated by getUserByMXID
Took 9 minutes
This commit is contained in:
parent
d02ba91c4e
commit
8a2b7e8177
|
@ -503,6 +503,8 @@ class Room {
|
||||||
type: HTTPType.GET,
|
type: HTTPType.GET,
|
||||||
action: "/client/r0/rooms/$id/state/m.room.member/$mxID");
|
action: "/client/r0/rooms/$id/state/m.room.member/$mxID");
|
||||||
if (resp is ErrorResponse) return null;
|
if (resp is ErrorResponse) return null;
|
||||||
|
// Somehow we miss the mxid in the response and only get the content of the event.
|
||||||
|
resp["matrix_id"] = mxID;
|
||||||
return User.fromJson(resp, this);
|
return User.fromJson(resp, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue