diff options
Diffstat (limited to 'vendor/github.com/Rhymen/go-whatsapp/write.go')
-rw-r--r-- | vendor/github.com/Rhymen/go-whatsapp/write.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/github.com/Rhymen/go-whatsapp/write.go b/vendor/github.com/Rhymen/go-whatsapp/write.go index 2b07ca6b..b3704e4a 100644 --- a/vendor/github.com/Rhymen/go-whatsapp/write.go +++ b/vendor/github.com/Rhymen/go-whatsapp/write.go @@ -78,13 +78,13 @@ func (wac *Conn) sendKeepAlive() error { return nil } -/* +/* When phone is unreachable, WhatsAppWeb sends ["admin","test"] time after time to try a successful contact. Tested with Airplane mode and no connection at all. */ func (wac *Conn) sendAdminTest() (bool, error) { data := []interface{}{"admin", "test"} - + r, err := wac.writeJson(data) if err != nil { return false, errors.Wrap(err, "error sending admin test") @@ -103,9 +103,9 @@ func (wac *Conn) sendAdminTest() (bool, error) { if len(response) == 2 && response[0].(string) == "Pong" && response[1].(bool) == true { return true, nil - } else{ + } else { return false, nil - } + } } func (wac *Conn) write(messageType int, answerMessageTag string, data []byte) (<-chan string, error) { |