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 6989fc7bdb6069e5f4fe4628d3d569e6a1f5cc33
parent 76f38621de23c2f6f2b42df5d05d73c8128c6ee5
Author: Cubity_First <cubity@cubityfir.st>
Date:   Tue, 18 Jun 2019 15:45:19 +0100

Corrected Spelling

Changed it from Chache to Cache on Line 207
Diffstat:
Msrc/config.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/config.rs b/src/config.rs @@ -204,7 +204,7 @@ make_config! { data_folder: String, false, def, "data".to_string(); /// Database URL database_url: String, false, auto, |c| format!("{}/{}", c.data_folder, "db.sqlite3"); - /// Icon chache folder + /// Icon cache folder icon_cache_folder: String, false, auto, |c| format!("{}/{}", c.data_folder, "icon_cache"); /// Attachments folder attachments_folder: String, false, auto, |c| format!("{}/{}", c.data_folder, "attachments");