Compare commits

..

No commits in common. "8803f09974ca8a2c670ae30c73f7550a0eec0e4f" and "789d5bf5557c922b9af50dfb439476f7a81bd3a4" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "multi-hoster-uploader",
"version": "2.4.2",
"version": "2.4.1",
"description": "Upload files to doodstream, voe, vidmoly, byse simultaneously",
"main": "main.js",
"scripts": {

View File

@ -715,8 +715,6 @@ function removeJobFromIndex(job) {
// Track deletion so handleProgress() won't re-create this job from stale callbacks
_deletedJobIds.add(job.id);
if (job.uploadId) _deletedJobIds.add(job.uploadId);
// Allow re-uploading same file+hoster after deletion
if (job.file && job.hoster) _completedUploadKeys.delete(`${job.file}|${job.hoster}`);
}
// --- Queue Table Rendering (debounced with virtual scrolling) ---