mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Don't broadcast a ListExtItem when setting it in FromInternal.
This commit is contained in:
parent
c8447b56f2
commit
2302d6f99c
@ -313,7 +313,7 @@ public:
|
||||
|
||||
if (value.empty())
|
||||
{
|
||||
SimpleExtItem<Container>::Unset(container);
|
||||
SimpleExtItem<Container>::Unset(container, false);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -332,12 +332,12 @@ public:
|
||||
{
|
||||
// The remote sent an empty list.
|
||||
delete list;
|
||||
SimpleExtItem<Container>::Unset(container);
|
||||
SimpleExtItem<Container>::Unset(container, false);
|
||||
}
|
||||
else
|
||||
{
|
||||
// The remote sent a non-zero list.
|
||||
SimpleExtItem<Container>::Set(container, list);
|
||||
SimpleExtItem<Container>::Set(container, list, false);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user