Skip to content

Commit cfa6aed

Browse files
committedSep 26, 2024
Disable locale when fetching channel info
We do not use the locale information.
1 parent 1d2a350 commit cfa6aed

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎slack.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,7 @@ func (metaClient *slackMetaClient) getChannels(ctx context.Context) (channelList
137137

138138
func (metaClient *slackMetaClient) getChannelByID(ctx context.Context, id string) (*slack.Channel, error) {
139139
return metaClient.slackClient.GetConversationInfoContext(ctx, &slack.GetConversationInfoInput{
140-
ChannelID: id,
141-
IncludeLocale: true,
140+
ChannelID: id,
142141
})
143142
}
144143

0 commit comments

Comments
 (0)