summaryrefslogtreecommitdiff
path: root/modules/commands/hs_group.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-03-12 13:26:25 +0000
committerSadie Powell <sadie@witchery.services>2024-03-12 13:26:25 +0000
commit1986aa65815f061106f43a5c1e9a22bc199a2d56 (patch)
treebc9df40cb285e630eef58de1718a005bbbb1713e /modules/commands/hs_group.cpp
parent1a6060ac5bcd9346a39928bafb42a58fd023a6c8 (diff)
Fix duplicate messages when synconset/syncongroup is set.
Closes #366.
Diffstat (limited to 'modules/commands/hs_group.cpp')
-rw-r--r--modules/commands/hs_group.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/hs_group.cpp b/modules/commands/hs_group.cpp
index f08c56685..b22450227 100644
--- a/modules/commands/hs_group.cpp
+++ b/modules/commands/hs_group.cpp
@@ -28,7 +28,7 @@ class CommandHSGroup : public Command
for (unsigned i = 0; i < na->nc->aliases->size(); ++i)
{
NickAlias *nick = na->nc->aliases->at(i);
- if (nick)
+ if (nick && nick != na)
{
nick->SetVhost(na->GetVhostIdent(), na->GetVhostHost(), na->GetVhostCreator());
FOREACH_MOD(OnSetVhost, (nick));