From c4432a5234eed3654075819bbdb54c4c0888cbf3 Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 22 Feb 2024 10:01:17 +0530 Subject: [PATCH] Remove unnecessary cache invalidation for channel (#26256) ```release-note NONE ``` --- server/platform/services/sharedchannel/service.go | 1 - 1 file changed, 1 deletion(-) diff --git a/server/platform/services/sharedchannel/service.go b/server/platform/services/sharedchannel/service.go index 335f9ba2e3..8c321f0072 100644 --- a/server/platform/services/sharedchannel/service.go +++ b/server/platform/services/sharedchannel/service.go @@ -263,7 +263,6 @@ func (scs *Service) notifyClientsForSharedChannelConverted(channel *model.Channe } func (scs *Service) notifyClientsForSharedChannelUpdate(channel *model.Channel) { - scs.platform.InvalidateCacheForChannel(channel) messageWs := model.NewWebSocketEvent(model.WebsocketEventChannelUpdated, channel.TeamId, "", "", nil, "") messageWs.Add("channel_id", channel.Id) scs.app.Publish(messageWs)