From f4249c7d617ee7e1f7a634960a55467ac4656480 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Fri, 22 Dec 2023 13:50:15 +0800 Subject: [PATCH] fix bug --- src/dialogs/index.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dialogs/index.jsx b/src/dialogs/index.jsx index eef9db10..52bfdb23 100644 --- a/src/dialogs/index.jsx +++ b/src/dialogs/index.jsx @@ -61,6 +61,8 @@ export async function askForYouTubeInput() { }, }); + if (value == null) return []; + return parseYouTube(value); }