diff --git a/frontend/src/components/settings/ImportFiltersForm.vue b/frontend/src/components/settings/ImportFiltersForm.vue
index 9e00058..fbfd69b 100644
--- a/frontend/src/components/settings/ImportFiltersForm.vue
+++ b/frontend/src/components/settings/ImportFiltersForm.vue
@@ -50,6 +50,28 @@
Higher = looser near-duplicate matching.
+
+
+ Downloader (FC-3c)
+
+
+
+ gallery-dl extractor.sleep. Higher = slower but safer.
+
+
+
+
+
+
{{ store.settingsError }}
@@ -69,7 +91,9 @@ const local = reactive({
min_width: 0, min_height: 0,
skip_transparent: false, transparency_threshold: 0.9,
skip_single_color: false, single_color_threshold: 0.95,
- phash_threshold: 10
+ phash_threshold: 10,
+ download_rate_limit_seconds: 3.0,
+ download_validate_files: true,
})
watch(() => store.settings, (s) => { if (s) Object.assign(local, s) }, { immediate: true })