1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-02 05:48:59 +02:00

fix /connect/token to push identity

Dieser Commit ist enthalten in:
toto-xoxo 2023-11-23 15:34:56 +01:00 committet von Mathijs van Veluw
Ursprung 802998b6fb
Commit 826f866841

Datei anzeigen

@ -50,7 +50,7 @@ async fn get_auth_push_token() -> ApiResult<String> {
("client_secret", &client_secret),
];
let res = match get_reqwest_client().post(CONFIG.push_identity_uri()).form(&params).send().await {
let res = match get_reqwest_client().post(&format!("{}/connect/token", CONFIG.push_identity_uri())).form(&params).send().await {
Ok(r) => r,
Err(e) => err!(format!("Error getting push token from bitwarden server: {e}")),
};