mirror of
https://github.com/dani-garcia/vaultwarden.wiki.git
synced 2026-07-29 22:25:07 +03:00
Misc updates and fixes (#7406)
* Misc updates and fixes - Updated Rust to v1.96.1 - Updated all the crates - Updated GitHub Actions - Updated the web-vault to v2026.6.2 - Updated Alpine to v3.24 - Fixed several clippy lints - The `send` UUID wrappers didn't need the special namespace anymore since an updated crate, so removed this extra mod. Signed-off-by: BlackDex <black.dex@gmail.com> * Update MSRV to v1.94.1 Signed-off-by: BlackDex <black.dex@gmail.com> --------- Signed-off-by: BlackDex <black.dex@gmail.com>
This commit is contained in:
@@ -550,7 +550,7 @@ impl Membership {
|
||||
} else {
|
||||
// The Bitwarden clients seem to call this API regardless of whether groups are enabled,
|
||||
// so just act as if there are no groups.
|
||||
Vec::with_capacity(0)
|
||||
Vec::new()
|
||||
};
|
||||
|
||||
// Check if a user is in a group which has access to all collections
|
||||
@@ -604,7 +604,7 @@ impl Membership {
|
||||
})
|
||||
.collect()
|
||||
} else {
|
||||
Vec::with_capacity(0)
|
||||
Vec::new()
|
||||
};
|
||||
|
||||
// HACK: Convert the manager type to a custom type
|
||||
|
||||
Reference in New Issue
Block a user