From 5b8cf6adc05a585c2af1ce74760251180f545bf6 Mon Sep 17 00:00:00 2001 From: Alex Zorin Date: Mon, 26 Aug 2019 09:40:27 +1000 Subject: [PATCH] missing continue in error case --- cmd/authy-export/authy-export.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/authy-export/authy-export.go b/cmd/authy-export/authy-export.go index df4c504..eb4fe01 100644 --- a/cmd/authy-export/authy-export.go +++ b/cmd/authy-export/authy-export.go @@ -98,6 +98,7 @@ func main() { tok, err := app.Token() if err != nil { log.Printf("Failed to decode app %s: %v", app.Name, err) + continue } params := url.Values{} params.Set("secret", tok)