by Robin at 20241213

This commit is contained in:
Robin 2024-12-13 18:38:30 +08:00
parent 43a75bbf98
commit 775595eeb7
1 changed files with 3 additions and 3 deletions

View File

@ -479,9 +479,9 @@ func (handler *NotifBuilderHandler) handleAudStreamerDirectlyUpdated() {
func (handler *NotifBuilderHandler) handleAudProfileChangeApplied() {
handler.handlerMap[consts.AudNotifTemp_ProfileChangeApplied] = func(ctx *gin.Context, args ...any) {
zone := args[0].(*dbstruct.Zone)
if zone.Profile != nil {
DefaultService.utilWriteNotifInfo(ctx, consts.AudNotifTemp_ProfileChangeApplied, zone.GetMid())
req := args[0].(*zoneproto.ApiUpdateReq)
if req.Zone.Profile != nil {
DefaultService.utilWriteNotifInfo(ctx, consts.AudNotifTemp_ProfileChangeApplied, req.Zone.GetMid())
}
}
}