From 21ec68d27e8ae7f6133df456a6a6b7c2cba4bf70 Mon Sep 17 00:00:00 2001 From: mountain Date: Mon, 6 Nov 2023 17:00:23 +0900 Subject: [PATCH] =?UTF-8?q?=ED=8C=8C=ED=8B=B0=20=EC=B4=88=EB=8C=80=20?= =?UTF-8?q?=EA=B1=B0=EC=A0=88=EC=8B=9C=20=EB=A9=A4=EB=B2=84=20=EC=95=84?= =?UTF-8?q?=EC=9B=83=20=EB=A9=94=EC=8B=9C=EC=A7=80=20=EB=B3=B4=EB=83=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/group_party.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/group_party.go b/core/group_party.go index 3b168ee..3761cc5 100644 --- a/core/group_party.go +++ b/core/group_party.go @@ -815,4 +815,12 @@ func (gp *groupParty) DenyPartyInvitation(ctx wshandler.ApiCallContext) { rh: gp.rh, } gd.removeMember(mid) + + gp.sendUpstreamMessage(&wshandler.UpstreamMessage{ + Target: "#" + gd.strid(), + Body: bson.M{ + gd.tid(mid): bson.M{}, + }, + Tag: []string{"MemberDocFull"}, + }) }