mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
ircd:Ⓜ️:room: Consider an empty set a positive lonly() result.
This commit is contained in:
parent
1bea1d2265
commit
8cd65bd3c9
1 changed files with 1 additions and 1 deletions
|
@ -1330,7 +1330,7 @@ ircd::m::room::lonly()
|
||||||
const
|
const
|
||||||
{
|
{
|
||||||
const origins origins(*this);
|
const origins origins(*this);
|
||||||
return origins.only(my_host());
|
return origins.empty() || origins.only(my_host());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Reference in a new issue