Fix errors that occurred in the nightly build

This commit is contained in:
Fabian Thies
2021-08-04 13:25:41 +02:00
parent dd98fe860b
commit 42ba817a4c
2 changed files with 4 additions and 4 deletions

View File

@ -234,8 +234,8 @@ impl Send {
pub fn update_users_revision(&self, conn: &DbConn) -> Vec<String> {
let mut user_uuids = Vec::new();
match self.user_uuid {
Some(ref user_uuid) => {
match &self.user_uuid {
Some(user_uuid) => {
User::update_uuid_revision(user_uuid, conn);
user_uuids.push(user_uuid.clone())
}