From: Florian Forster Date: Tue, 30 Jan 2018 09:13:25 +0000 (+0100) Subject: Disconnect handler: don't print success message after failure. X-Git-Url: https://git.octo.it/?p=kraftakt.git;a=commitdiff_plain;h=6edb36816137a6ae2246eb8858fa3453dce8ab79 Disconnect handler: don't print success message after failure. --- diff --git a/kraftakt.go b/kraftakt.go index 87b8bf2..4768da8 100644 --- a/kraftakt.go +++ b/kraftakt.go @@ -176,6 +176,7 @@ func fitbitDisconnectHandler(ctx context.Context, w http.ResponseWriter, r *http for _, collection := range []string{"activities", "sleep"} { if err := c.Unsubscribe(ctx, collection); err != nil { errs = append(errs, fmt.Errorf("Unsubscribe(%q) = %v", collection, err)) + continue } log.Infof(ctx, "Successfully unsubscribed from %q", collection) }