From e2e661953474bfe6e7e7f6c828597ba7cb0838ff Mon Sep 17 00:00:00 2001 From: arabcoders Date: Wed, 4 Jun 2025 22:33:05 +0300 Subject: [PATCH] fixed bug in default URL separator selector. --- ui/components/NewDownload.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/components/NewDownload.vue b/ui/components/NewDownload.vue index a7fbff2b..4cf33d7c 100644 --- a/ui/components/NewDownload.vue +++ b/ui/components/NewDownload.vue @@ -232,7 +232,7 @@ const getSeparatorsName = (value) => { } const showAdvanced = useStorage('show_advanced', false) -const separator = useStorage('url_separator', separators[0]) +const separator = useStorage('url_separator', separators[0].value) const addInProgress = ref(false)