This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(health): don't try to healthcheck firebase if not configured

+4
+4
health.go
··· 92 92 } 93 93 94 94 func CheckFirebaseHealth() error { 95 + if !config.HasValidFirebaseServiceAccount() { 96 + return nil 97 + } 98 + 95 99 fcm, err := firebaseClient.Messaging(firebaseCtx) 96 100 if err != nil { 97 101 return fmt.Errorf("while initializing messaging client: %w", err)