mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 08:12:37 +01:00
modules/m_room_power_levels: Minor upgrade to c++17 syntax.
This commit is contained in:
parent
b4ba03ae15
commit
bfe1eace7d
1 changed files with 3 additions and 3 deletions
|
@ -74,15 +74,15 @@ ircd::m::auth_room_power_levels(const m::event &event,
|
|||
"m.room.power_levels content.users is not a json object."
|
||||
};
|
||||
|
||||
for(const auto &member : json::object(at<"content"_>(event).at("users")))
|
||||
for(const auto &[user_id, value] : json::object(at<"content"_>(event).at("users")))
|
||||
{
|
||||
if(!m::valid(m::id::USER, member.first))
|
||||
if(!m::valid(m::id::USER, user_id))
|
||||
throw FAIL
|
||||
{
|
||||
"m.room.power_levels content.users key is not a user mxid"
|
||||
};
|
||||
|
||||
if(!try_lex_cast<int64_t>(unquote(member.second)))
|
||||
if(!try_lex_cast<int64_t>(unquote(value)))
|
||||
throw FAIL
|
||||
{
|
||||
"m.room.power_levels content.users value is not an integer."
|
||||
|
|
Loading…
Reference in a new issue