mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-08-30 14:34:48 +00:00
fix /connect/token to push identity
This commit is contained in:
parent
802998b6fb
commit
826f866841
1 changed files with 1 additions and 1 deletions
|
@ -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(¶ms).send().await {
|
||||
let res = match get_reqwest_client().post(&format!("{}/connect/token", CONFIG.push_identity_uri())).form(¶ms).send().await {
|
||||
Ok(r) => r,
|
||||
Err(e) => err!(format!("Error getting push token from bitwarden server: {e}")),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue