Skip to content

Commit 6fb3c0a

Browse files
committed
Merge branch 'master' of github.com:korotovsky/slack-mcp-server
2 parents 574d35b + 105155a commit 6fb3c0a

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.env
33
.users_cache.json
44
.channels_cache.json
5+
.channels_cache_v2.json
56
/extension.dxt/server/slack-mcp-server-*
67
/extension.dxt/server/index.js
78
/build/slack-mcp-server-*

.vscode/launch.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Connect to Docker",
9+
"type": "go",
10+
"request": "attach",
11+
"mode": "remote",
12+
"remotePath": "/app",
13+
"port": 40000,
14+
"host": "127.0.0.1",
15+
"cwd": "${workspaceFolder}",
16+
"trace": "verbose"
17+
}
18+
]
19+
}

pkg/provider/api.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,6 @@ func (ap *ApiProvider) GetChannelsType(ctx context.Context, channelType string)
580580
break
581581
}
582582

583-
chans = make([]Channel, 0, len(channels))
584583
for _, channel := range channels {
585584
ch := mapChannel(
586585
channel.ID,

0 commit comments

Comments
 (0)