geforkt von mirrored/vaultwarden
Merge pull request #343 from mprasil/share_fix
Fix sharing the item to organization.
Dieser Commit ist enthalten in:
Commit
20964ac2d8
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -221,7 +221,7 @@ pub fn update_cipher_from_data(
|
||||||
nt: &Notify,
|
nt: &Notify,
|
||||||
ut: UpdateType,
|
ut: UpdateType,
|
||||||
) -> EmptyResult {
|
) -> EmptyResult {
|
||||||
if cipher.organization_uuid != data.OrganizationId {
|
if cipher.organization_uuid.is_some() && cipher.organization_uuid != data.OrganizationId {
|
||||||
err!("Organization mismatch. Please resync the client before updating the cipher")
|
err!("Organization mismatch. Please resync the client before updating the cipher")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Laden …
In neuem Issue referenzieren