prevent cache
All checks were successful
Build Images and Deploy / Update-PROD-Stack (push) Successful in 1m9s
All checks were successful
Build Images and Deploy / Update-PROD-Stack (push) Successful in 1m9s
This commit is contained in:
@@ -1253,9 +1253,9 @@
|
||||
throw new Error(data.error || 'Processing failed');
|
||||
}
|
||||
|
||||
// Load processed video preview
|
||||
// Load processed video preview with cache-busting
|
||||
const processedVideoPreview = document.getElementById('processed-video-preview');
|
||||
processedVideoPreview.src = `/preview/${currentFileId}`;
|
||||
processedVideoPreview.src = `/preview/${currentFileId}?t=${Date.now()}`;
|
||||
|
||||
// Show download section
|
||||
document.getElementById('edit-section').classList.add('hidden');
|
||||
|
||||
Reference in New Issue
Block a user