From 8992fed59143c85eb08c58972002f917f3c5e8c0 Mon Sep 17 00:00:00 2001 From: ntr Date: Mon, 23 Sep 2019 13:54:06 +1000 Subject: [PATCH] don't create account img on register --- server/src/account.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/account.rs b/server/src/account.rs index 10e0138f..11776a4b 100644 --- a/server/src/account.rs +++ b/server/src/account.rs @@ -348,7 +348,7 @@ pub fn create(name: &String, password: &String, tx: &mut Transaction) -> Result< .insert(tx)?; } - img::shapes_write(img)?; + // img::shapes_write(img)?; info!("registration account={:?}", name);