Update frontend retry calls to POST

This commit is contained in:
Tor Wingalen
2026-05-15 23:55:10 +02:00
parent 5dc428b148
commit 5d20972c2d
2 changed files with 2 additions and 2 deletions
@@ -138,7 +138,7 @@ export class PlaylistService {
}
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 {
@@ -57,7 +57,7 @@ export class TrackService {
}
retry(id: number): void {
this.http.get(`${ENDPOINT}/retry/${id}`).subscribe();
this.http.post(`${ENDPOINT}/retry/${id}`, {}).subscribe();
}
private initWsConnection(): void {