0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-05-18 04:43:49 +02:00

fix push device registration (#4297)

don't try to register a push device when the device is new
it will be registered when the push token is saved

fixes #4296
This commit is contained in:
Stefan Melmuk 2024-01-31 22:31:22 +01:00 committed by GitHub
parent ad1d65bdf8
commit 0b2383ab56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -268,7 +268,9 @@ async fn _password_login(
}
// register push device
register_push_device(&mut device, conn).await?;
if !new_device {
register_push_device(&mut device, conn).await?;
}
// Common
// ---