mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 08:12:37 +01:00
ircd:Ⓜ️ Reduce infolog noise here; fixes.
This commit is contained in:
parent
1f88439bc1
commit
eaf64ba732
2 changed files with 4 additions and 1 deletions
|
@ -812,7 +812,7 @@ try
|
|||
};
|
||||
|
||||
if(!exists(my_room))
|
||||
create(my_room, me, "internal");
|
||||
create(my_room, me);
|
||||
|
||||
if(!membership(my_room, me, "join"))
|
||||
join(my_room, me);
|
||||
|
|
|
@ -37,6 +37,9 @@ void
|
|||
ircd::m::changed_room_power_levels(const m::event &event,
|
||||
m::vm::eval &)
|
||||
{
|
||||
if(myself(json::get<"sender"_>(event)))
|
||||
return;
|
||||
|
||||
log::info
|
||||
{
|
||||
m::log, "%s changed power_levels in %s [%s]",
|
||||
|
|
Loading…
Reference in a new issue