Removed erroneous code and added the ability to kill all downlaods

This commit is contained in:
Isaac Abadi
2020-07-25 15:57:10 -04:00
parent c5b0a7a697
commit 333556c305
5 changed files with 79 additions and 44 deletions

View File

@@ -163,12 +163,8 @@ export class PostsService implements CanActivate {
ui_uid: ui_uid}, this.httpOptions);
}
getFileStatusMp3(name: string) {
return this.http.post(this.path + 'fileStatusMp3', {name: name}, this.httpOptions);
}
getFileStatusMp4(name: string) {
return this.http.post(this.path + 'fileStatusMp4', {name: name}, this.httpOptions);
killAllDownloads() {
return this.http.post(this.path + 'killAllDownloads', {}, this.httpOptions);
}
loadNavItems() {