Fix dl issue
All checks were successful
ci / Image build (push) Successful in 2m14s
ci / Deployment (push) Successful in 6s

This commit is contained in:
Joris Bertomeu
2025-08-26 20:10:45 +02:00
parent 0c867d0ce0
commit a750b52832
3 changed files with 5 additions and 4 deletions

View File

@@ -31,8 +31,8 @@ export class VideoProcessingService {
return this.http.post<any>(`${this.apiUrl}/processUpdate`, data);
}
downloadFile(filePath: string): Observable<Blob> {
return this.http.get(`${this.apiUrl}/download${filePath}`, { responseType: 'blob' });
downloadFile(filename: string): Observable<Blob> {
return this.http.get(`${this.apiUrl}/download?filename=${encodeURIComponent(filename)}`, { responseType: 'blob' });
}
flushQueue(): Observable<any> {