From dcfea2073c3e07eba90d22c6251d58f3c9b6ebbe Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Wed, 18 Mar 2026 09:20:25 +0100 Subject: [PATCH] Fix: Wrong files Path --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 108497a..58621c9 100644 --- a/main.js +++ b/main.js @@ -31,7 +31,7 @@ const gotLock = app.requestSingleInstanceLock(); // Native dependencies check (yt-dlp.exe, ffmpeg.exe, ffprobe.exe, Deno) function checkNativeDependencies() { // Import centralized paths after app initialization - const { binaryPaths } = require("./server/helpers/path"); + const { binaryPaths } = require("./server/helpers/path.helpers.js"); const deps = [ { name: "yt-dlp.exe", path: binaryPaths.ytDlp }, @@ -118,7 +118,7 @@ function validateDownloadPath(userPath) { // Lazy load default path if (!defaultDownloadPath) { - const { defaultDownloadFolder } = require("./server/helpers/path"); + const { defaultDownloadFolder } = require("./server/helpers/path.helpers.js"); defaultDownloadPath = defaultDownloadFolder; }