From 693d236929c04b50b4c942d2686e7fd10afbc351 Mon Sep 17 00:00:00 2001 From: arkohut <39525455+arkohut@users.noreply.github.com> Date: Fri, 25 Oct 2024 18:11:04 +0800 Subject: [PATCH] fix: give folders=None --- memos/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memos/commands.py b/memos/commands.py index e19d24d..29df53d 100644 --- a/memos/commands.py +++ b/memos/commands.py @@ -230,7 +230,7 @@ def reindex_default_library( # Reindex the library print(f"Reindexing library: {default_library['name']}") - reindex(default_library["id"], force=force) + reindex(default_library["id"], force=force, folders=None) @app.command("record")