From e427802aaeac9d78922a64d7a19268648f5b9113 Mon Sep 17 00:00:00 2001 From: herrrta <73949927+herrrta@users.noreply.github.com> Date: Sun, 8 Dec 2024 10:34:03 -0500 Subject: [PATCH] Fix delete by show file type --- app/(auth)/(tabs)/(home)/downloads/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(auth)/(tabs)/(home)/downloads/index.tsx b/app/(auth)/(tabs)/(home)/downloads/index.tsx index 39f46c8c..2d4dcaa5 100644 --- a/app/(auth)/(tabs)/(home)/downloads/index.tsx +++ b/app/(auth)/(tabs)/(home)/downloads/index.tsx @@ -71,7 +71,7 @@ export default function page() { writeToLog("ERROR", reason); toast.error("Failed to delete all movies"); }); - const deleteShows = () => deleteFileByType("Movie") + const deleteShows = () => deleteFileByType("Episode") .then(() => toast.success("Deleted all TV-Series successfully!")) .catch((reason) => { writeToLog("ERROR", reason);