mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-05-25 13:30:19 +03:00
Fix merge conflict (#7164)
This commit is contained in:
@@ -2056,7 +2056,7 @@ async fn archive_multiple_ciphers(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Multi archive does not send out a push for each cipher, we need to send a general sync here
|
// Multi archive does not send out a push for each cipher, we need to send a general sync here
|
||||||
nt.send_user_update(UpdateType::SyncCiphers, &headers.user, &headers.device.push_uuid, conn).await;
|
nt.send_user_update(UpdateType::SyncCiphers, &headers.user, headers.device.push_uuid.as_ref(), conn).await;
|
||||||
|
|
||||||
Ok(Json(json!({
|
Ok(Json(json!({
|
||||||
"data": ciphers,
|
"data": ciphers,
|
||||||
@@ -2082,7 +2082,7 @@ async fn unarchive_multiple_ciphers(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Multi unarchive does not send out a push for each cipher, we need to send a general sync here
|
// Multi unarchive does not send out a push for each cipher, we need to send a general sync here
|
||||||
nt.send_user_update(UpdateType::SyncCiphers, &headers.user, &headers.device.push_uuid, conn).await;
|
nt.send_user_update(UpdateType::SyncCiphers, &headers.user, headers.device.push_uuid.as_ref(), conn).await;
|
||||||
|
|
||||||
Ok(Json(json!({
|
Ok(Json(json!({
|
||||||
"data": ciphers,
|
"data": ciphers,
|
||||||
|
|||||||
Reference in New Issue
Block a user