Fixed bug that prevented video download or archive download from occuring

This commit is contained in:
Isaac Grynsztein
2020-04-26 17:41:54 -04:00
parent 68ed66072e
commit c18bf568c7

View File

@@ -144,11 +144,11 @@ export class PostsService {
subscriptionName: subscriptionName,
subPlaylist: subPlaylist
},
{responseType: 'blob', headers: this.httpOptions.headers});
{responseType: 'blob', params: this.httpOptions.params});
}
downloadArchive(sub) {
return this.http.post(this.path + 'downloadArchive', {sub: sub}, {responseType: 'blob', headers: this.httpOptions.headers});
return this.http.post(this.path + 'downloadArchive', {sub: sub}, {responseType: 'blob', params: this.httpOptions.params});
}
getFileInfo(fileNames, type, urlMode) {