mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 02:02:38 +01:00
ircd:Ⓜ️ Use room::message for proper body in pretty_msgline().
This commit is contained in:
parent
0e7c12958a
commit
10554d51b5
1 changed files with 12 additions and 7 deletions
|
@ -663,22 +663,27 @@ ircd::m::pretty_msgline(std::ostream &s,
|
|||
{
|
||||
case "m.room.message"_:
|
||||
{
|
||||
const json::string msgtype
|
||||
const room::message msg
|
||||
{
|
||||
content["msgtype"]
|
||||
content
|
||||
};
|
||||
|
||||
const json::string body
|
||||
const auto &type
|
||||
{
|
||||
content["body"]
|
||||
json::get<"msgtype"_>(msg)
|
||||
};
|
||||
|
||||
const auto &body
|
||||
{
|
||||
msg.body()
|
||||
};
|
||||
|
||||
if(!text_only)
|
||||
s << msgtype << ' ';
|
||||
else if(msgtype != "m.text")
|
||||
s << type << ' ';
|
||||
else if(type != "m.text")
|
||||
break;
|
||||
|
||||
s << body;
|
||||
s << msg.body();
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue