vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit b3f7394c06f78fd0019947d6d82f21fedd7a7db5
parent 1a5ecd4d4aaa3744b45d8e67c689335959f7cc1b
Author: Miroslav Prasil <miroslav@prasil.info>
Date:   Tue,  5 Feb 2019 14:09:59 +0000

Do not update revision at the end, as we already did that

Diffstat:
Msrc/api/core/ciphers.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/api/core/ciphers.rs b/src/api/core/ciphers.rs @@ -857,7 +857,7 @@ fn move_cipher_selected(data: JsonUpcase<MoveCipherData>, headers: Headers, conn nt.send_cipher_update( UpdateType::CipherUpdate, &cipher, - &User::update_uuid_revision(&user_uuid, &conn), + &vec![user_uuid.clone()] ); }