0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

modules/client/rooms/join: No need to parse the unused and deprecated origin field here.

This commit is contained in:
Jason Volk 2019-06-06 22:39:05 -07:00
parent 48a8057cb5
commit f728906505

View file

@ -260,19 +260,13 @@ bootstrap(const net::hostport &host,
bootstrap_send_join(host, room_id, event_id)
};
const json::string &origin
{
response["origin"]
};
log::info
{
m::log, "join bootstrap joined to %s for %s at %s to '%s' reporting '%s'",
m::log, "join bootstrap joined to %s for %s at %s to '%s'",
string_view{room_id},
string_view{user_id},
string_view{event_id},
string(rembuf, host),
string_view{origin},
};
// Always eval the auth_chain before anything else