UI & logs now use proper fork name rather than just youtube-dl

This commit is contained in:
Isaac Abadi
2022-06-25 17:22:08 -04:00
parent 19a3ffc118
commit 86cbfea08f
6 changed files with 19 additions and 19 deletions

View File

@@ -100,7 +100,8 @@ import {
UpdateFileRequest,
Sort,
FileTypeFilter,
GetAllFilesRequest
GetAllFilesRequest,
GetAllTasksResponse
} from '../api-types';
import { isoLangs } from './settings/locales_list';
import { Title } from '@angular/platform-browser';
@@ -596,7 +597,7 @@ export class PostsService implements CanActivate {
}
getTasks() {
return this.http.post<SuccessObject>(this.path + 'getTasks', {}, this.httpOptions);
return this.http.post<GetAllTasksResponse>(this.path + 'getTasks', {}, this.httpOptions);
}
resetTasks() {