Merge pull request #1039 from Tzahi12345/video-info-bug-fix

Video info bug fix
This commit is contained in:
Tzahi12345
2023-12-03 21:26:42 -05:00
committed by GitHub
4 changed files with 15 additions and 20 deletions

View File

@@ -460,7 +460,7 @@ export class PostsService implements CanActivate {
return this.http.post<SuccessObject>(this.path + 'deleteArchiveItems', body, this.httpOptions);
}
getFileFormats(url) {
getFileFormats(url: string) {
const body: GetFileFormatsRequest = {url: url};
return this.http.post<GetFileFormatsResponse>(this.path + 'getFileFormats', body, this.httpOptions);
}