From 6b9295e53c35b7c4656ead09cc34323ab569b058 Mon Sep 17 00:00:00 2001 From: Victoria Jeffrey Date: Thu, 14 Sep 2023 17:17:28 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20missing=20slack=20team=20n?= =?UTF-8?q?ame?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- providers/slack/connection/connection.go | 1 + 1 file changed, 1 insertion(+) diff --git a/providers/slack/connection/connection.go b/providers/slack/connection/connection.go index f320cd5237..8d1d206d6a 100644 --- a/providers/slack/connection/connection.go +++ b/providers/slack/connection/connection.go @@ -53,6 +53,7 @@ func NewSlackConnection(id uint32, asset *inventory.Asset, conf *inventory.Confi sc.client = client sc.teamInfo = teamInfo + sc.asset.Name = teamInfo.Name return sc, nil }