Browse Source

Fix Collection Read Only access for groups

I messed up with identation sorry it's my first PR

Fix Collection Read Only access for groups

Fix Collection Read Only access for groups

With indentation modification
pull/3254/head
Misterbabou 2 years ago
parent
commit
7f69eebeb1
  1. 2
      src/db/models/collection.rs

2
src/db/models/collection.rs

@ -64,6 +64,8 @@ impl Collection {
Some(_) => { Some(_) => {
if let Some(uc) = cipher_sync_data.user_collections.get(&self.uuid) { if let Some(uc) = cipher_sync_data.user_collections.get(&self.uuid) {
(uc.read_only, uc.hide_passwords) (uc.read_only, uc.hide_passwords)
} else if let Some(cg) = cipher_sync_data.user_collections_groups.get(&self.uuid) {
(cg.read_only, cg.hide_passwords)
} else { } else {
(false, false) (false, false)
} }

Loading…
Cancel
Save