Fix video channel deletion
This commit is contained in:
parent
09cf121ce8
commit
4035d2b6e9
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ export class VideoChannelService {
|
||||||
}
|
}
|
||||||
|
|
||||||
removeVideoChannel (videoChannel: VideoChannel) {
|
removeVideoChannel (videoChannel: VideoChannel) {
|
||||||
return this.authHttp.delete(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannel.uuid)
|
return this.authHttp.delete(VideoChannelService.BASE_VIDEO_CHANNEL_URL + videoChannel.nameWithHost)
|
||||||
.pipe(
|
.pipe(
|
||||||
map(this.restExtractor.extractDataBool),
|
map(this.restExtractor.extractDataBool),
|
||||||
catchError(err => this.restExtractor.handleError(err))
|
catchError(err => this.restExtractor.handleError(err))
|
||||||
|
|
Loading…
Reference in a new issue