1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-06-30 19:24:42 +02:00

Do not allocate uneccessary Vec

Dieser Commit ist enthalten in:
Miroslav Prasil 2019-02-05 14:16:07 +00:00
Ursprung b3f7394c06
Commit 637f655b6f

Datei anzeigen

@ -857,7 +857,7 @@ fn move_cipher_selected(data: JsonUpcase<MoveCipherData>, headers: Headers, conn
nt.send_cipher_update(
UpdateType::CipherUpdate,
&cipher,
&vec![user_uuid.clone()]
&[user_uuid.clone()]
);
}