From 54e19980329cebfb3cd89cb97719c1dae1032748 Mon Sep 17 00:00:00 2001 From: Sergio <77530549+sergi0g@users.noreply.github.com> Date: Sat, 15 Mar 2025 12:15:51 +0200 Subject: [PATCH] docs: fix incorrect cron schedule example --- docs/src/content/docs/configuration/automatic-refresh.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/content/docs/configuration/automatic-refresh.mdx b/docs/src/content/docs/configuration/automatic-refresh.mdx index b6efc35..b510300 100644 --- a/docs/src/content/docs/configuration/automatic-refresh.mdx +++ b/docs/src/content/docs/configuration/automatic-refresh.mdx @@ -4,7 +4,7 @@ Cup can automatically refresh the results when running in server mode. Simply ad ```jsonc { - "refresh_interval": "0 0,30 * 0 0" // Check twice an hour + "refresh_interval": "0 0,30 * * * *" // Check twice an hour // Other options } ```