improves activities load time

This commit is contained in:
Christian Beutel
2025-04-14 13:34:11 +02:00
parent eb260f2305
commit 5f9c865f2e
2 changed files with 46 additions and 1 deletions

View File

@@ -47,7 +47,10 @@ func SyncKomoot(app core.App) error {
decryptedPassword, err := security.Decrypt(komootIntegration.Password, encryptionKey)
if err != nil {
return err
warning := fmt.Sprintf("unable to decrypt password: %v\n", err)
fmt.Print(warning)
app.Logger().Warn(warning)
continue
}
err = k.Login(komootIntegration.Email, string(decryptedPassword))