From 0037699dda1599475b83b191365e89559277e90c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Wed, 6 Aug 2025 03:36:39 +0200 Subject: [PATCH] Increase `period` in `gallery` example to `Month` --- examples/gallery/src/civitai.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gallery/src/civitai.rs b/examples/gallery/src/civitai.rs index 1102acae..b24b1031 100644 --- a/examples/gallery/src/civitai.rs +++ b/examples/gallery/src/civitai.rs @@ -29,7 +29,7 @@ impl Image { .get("https://civitai.com/api/v1/images") .query(&[ ("sort", "Most Reactions"), - ("period", "Week"), + ("period", "Month"), ("nsfw", "None"), ("limit", &Image::LIMIT.to_string()), ])