mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-04 08:57:44 +00:00
Update dependencies (#1813)
This commit is contained in:
5
vendor/github.com/keybase/go-keybase-chat-bot/kbchat/kbchat.go
generated
vendored
5
vendor/github.com/keybase/go-keybase-chat-bot/kbchat/kbchat.go
generated
vendored
@ -303,7 +303,8 @@ func (a *API) startPipes() (err error) {
|
||||
|
||||
cmd := a.runOpts.Command("chat", "notification-settings", fmt.Sprintf("-disable-typing=%v", !a.runOpts.EnableTyping))
|
||||
if err = cmd.Run(); err != nil {
|
||||
return fmt.Errorf("unable to set notifiation settings %v", err)
|
||||
// This is a performance optimization but isn't a fatal error.
|
||||
a.Debug("unable to set notifiation settings %v", err)
|
||||
}
|
||||
|
||||
a.apiCmd = a.runOpts.Command("chat", "api")
|
||||
@ -312,7 +313,7 @@ func (a *API) startPipes() (err error) {
|
||||
}
|
||||
output, err := a.apiCmd.StdoutPipe()
|
||||
if err != nil {
|
||||
return fmt.Errorf("unabel to get api stdout: %v", err)
|
||||
return fmt.Errorf("unable to get api stdout: %v", err)
|
||||
}
|
||||
if runtime.GOOS != "windows" {
|
||||
a.apiCmd.ExtraFiles = []*os.File{output.(*os.File)}
|
||||
|
Reference in New Issue
Block a user