Update frontend retry calls to POST
This commit is contained in:
@@ -138,7 +138,7 @@ export class PlaylistService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
retryFailed(id: number): void {
|
retryFailed(id: number): void {
|
||||||
this.http.get<void>(`${ENDPOINT}/retry/${id}`).subscribe();
|
this.http.post<void>(`${ENDPOINT}/retry/${id}`, {}).subscribe();
|
||||||
}
|
}
|
||||||
|
|
||||||
setActive(id: number, active: boolean): void {
|
setActive(id: number, active: boolean): void {
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ export class TrackService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
retry(id: number): void {
|
retry(id: number): void {
|
||||||
this.http.get(`${ENDPOINT}/retry/${id}`).subscribe();
|
this.http.post(`${ENDPOINT}/retry/${id}`, {}).subscribe();
|
||||||
}
|
}
|
||||||
|
|
||||||
private initWsConnection(): void {
|
private initWsConnection(): void {
|
||||||
|
|||||||
Reference in New Issue
Block a user