From e1ad0910f0a383372a481cab4545c4e20805b41c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Mon, 27 Jan 2025 20:46:47 +0100 Subject: [PATCH] Change `period` to `Week` in `gallery` example --- 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 d1163013..5844fdfc 100644 --- a/examples/gallery/src/civitai.rs +++ b/examples/gallery/src/civitai.rs @@ -25,7 +25,7 @@ impl Image { .get(endpoint("/images")) .query(&[ ("sort", "Most Reactions"), - ("period", "Day"), + ("period", "Week"), ("nsfw", "None"), ("limit", "99"), ])