diff --git a/server/server.js b/server/server.js index 0d96f83..5269bb6 100644 --- a/server/server.js +++ b/server/server.js @@ -2087,7 +2087,8 @@ async function finalizeYoutubeJob(job, exitCode) { startRcloneStatsPolling(); const moveResult = await moveRootFolderToGdrive(job.folderId); if (moveResult.ok) { - // Upload tamamlanma durumu RC stats ile belirlenecek + job.moveStatus = "uploading"; + scheduleSnapshotBroadcast(); } else { job.moveStatus = "error"; job.moveError = moveResult.error || "GDrive taşıma hatası"; @@ -2433,7 +2434,8 @@ async function finalizeMailRuJob(job, exitCode) { startRcloneStatsPolling(); const moveResult = await movePathToGdrive(relPath); if (moveResult.ok) { - // Upload tamamlanma durumu RC stats ile belirlenecek + job.moveStatus = "uploading"; + scheduleSnapshotBroadcast(); } else { job.moveStatus = "error"; job.moveError = moveResult.error || "GDrive taşıma hatası"; @@ -7279,7 +7281,8 @@ async function onTorrentDone({ torrent }) { startRcloneStatsPolling(); const moveResult = await moveRootFolderToGdrive(rootFolder); if (moveResult.ok) { - // Upload tamamlanma durumu RC stats ile belirlenecek + entry.moveStatus = "uploading"; + scheduleSnapshotBroadcast(); } else { entry.moveStatus = "error"; entry.moveError = moveResult.error || "GDrive taşıma hatası";