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 2646db78a484b65f45d5804f84d1c21c119c9aa7
parent d9bfe847db4f4660523ddccd299d6e61412e84eb
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Mon, 25 Feb 2019 14:21:28 +0100

Merge pull request #414 from FrankPetrilli/patch-1

Minor typo fix conect => connect
Diffstat:
Msrc/main.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs @@ -211,7 +211,7 @@ mod migrations { pub fn run_migrations() { // Make sure the database is up to date (create if it doesn't exist, or run the migrations) - let connection = crate::db::get_connection().expect("Can't conect to DB"); + let connection = crate::db::get_connection().expect("Can't connect to DB"); use std::io::stdout; embedded_migrations::run_with_output(&connection, &mut stdout()).expect("Can't run migrations");