fixed double ext and playlist title detection (#106)

This commit is contained in:
Marco
2023-11-22 11:14:58 +01:00
committed by GitHub
parent fe6519773e
commit f478754b6f
3 changed files with 35 additions and 4 deletions

View File

@@ -25,6 +25,7 @@ import {
FC,
Suspense,
forwardRef,
useEffect,
useMemo,
useRef,
useState,
@@ -92,6 +93,10 @@ const DownloadDialog: FC<Props> = ({ open, onClose, onDownloadStart }) => {
const [isPending, startTransition] = useTransition()
useEffect(() => {
setCustomArgs('')
}, [open])
/**
* Retrive url from input, cli-arguments from checkboxes and emits via WebSocket
*/