chore: added deno as sidecar as per new yt-dlp requirement, bumped up bins and deps

This commit is contained in:
2025-10-07 21:02:07 +05:30
parent e9c5d13cb7
commit 9ca568ec2e
29 changed files with 999 additions and 914 deletions

View File

@@ -525,7 +525,7 @@ export default function App({ children }: { children: React.ReactNode }) {
const downloadedFileExt = downloadFilePath.split('.').pop();
// Update completion status after a short delay to ensure database states are propagated correctly
console.log(`Download completed with ID: ${downloadId}, updating filepath and status after 1s delay...`);
console.log(`Download completed with ID: ${downloadId}, updating filepath and status after 2s delay...`);
setTimeout(() => {
LOG.info('NEODLP', `yt-dlp download completed with id: ${downloadId}`);
downloadFilePathUpdater.mutate({ download_id: downloadId, filepath: downloadFilePath as string, ext: downloadedFileExt as string }, {
@@ -547,7 +547,7 @@ export default function App({ children }: { children: React.ReactNode }) {
console.error("Failed to update download status:", error);
}
});
}, 1000);
}, 2000);
}
}
});