fix: web ui flag

feat/type-attributes
Tomáš Mládek 2023-06-19 18:50:05 +02:00
parent 7118ea1e4c
commit 83317ff951
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ async fn main() -> Result<()> {
FsStore::from_path(args.store_path.unwrap_or_else(|| vault_path.clone())).unwrap(),
) as Box<dyn UpStore + Send + Sync>);
let ui_path = if !args.no_ui {
let ui_path = if args.no_ui {
None
} else {
let ui_path = get_static_dir("webui");