0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

modules/m_keys: Minor cleanup.

This commit is contained in:
Jason Volk 2019-09-12 19:35:55 -07:00
parent 605c7dd37c
commit 5fa545f879

View file

@ -532,17 +532,16 @@ ircd::m::keys::cache::get(const string_view &server_name,
// Without a key_id we search for the most recent key; note this is not
// the same as making a state_key="" query, as that would be an actual
// ircd.key entry without an id (which shouldn't exist).
const event::idx &event_idx
const event::idx event_idx
{
key_id?
node_room.get(std::nothrow, "ircd.key", key_id):
node_room.get(std::nothrow, "ircd.key")
};
if(!event_idx)
return false;
return m::get(std::nothrow, event_idx, "content", closure);
return event_idx?
m::get(std::nothrow, event_idx, "content", closure):
false;
}
bool