Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- run: go get golang.org/x/tools/cmd/goimports
- run: "! goimports ./... 2>&1 | read"
- run: "! go mod tidy ./... 2>&1 | read"
- run: go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.17.1
- run: go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.25.0
- run: "! golangci-lint 2>&1 | read"
sphinx-build:
docker:
Expand Down
2 changes: 1 addition & 1 deletion src/keybaseca/bot/bot.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func StartBot(conf config.Config) error {
if shared.IsPingRequest(messageBody, kbc.GetUsername()) {
// Respond to messages of the form `ping @botName` with `pong @senderName`
log.Debug("Responding to ping with pong")
_, err = kbc.SendMessageByConvID(msg.Message.ConvID, fmt.Sprintf(shared.GeneratePingResponse(msg.Message.Sender.Username)))
_, err = kbc.SendMessageByConvID(msg.Message.ConvID, shared.GeneratePingResponse(msg.Message.Sender.Username))
if err != nil {
LogError(conf, kbc, msg, err)
continue
Expand Down