From 649b5367b0d504c6aee27c249b0cb23af8567f4b Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Wed, 18 Sep 2024 17:19:08 +0100 Subject: [PATCH] Resume should be true --- app/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/__main__.py b/app/__main__.py index 6e26213..12acbae 100644 --- a/app/__main__.py +++ b/app/__main__.py @@ -42,7 +42,7 @@ def cli(log_level: str, log_file: str | None): @cli.command() @click.option( "--resume/--no-resume", - default=False, + default=True, help="Whether to do a full sync, or resume from previous" ) def run(resume: bool):