Prevent warning on empty user requests
This commit is contained in:
parent
a402e85a0f
commit
1b0af04cc8
1 changed files with 3 additions and 0 deletions
|
|
@ -2414,6 +2414,9 @@ Cache::joinedRooms()
|
|||
std::optional<MemberInfo>
|
||||
Cache::getMember(const std::string &room_id, const std::string &user_id)
|
||||
{
|
||||
if (user_id.empty())
|
||||
return std::nullopt;
|
||||
|
||||
try {
|
||||
auto txn = lmdb::txn::begin(env_, nullptr, MDB_RDONLY);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue