X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bremote-interaction%2Fremote-interaction.component.ts;h=775cc580c03f3fd4a8bc53d8cd52677cf33ce0db;hb=c9c0cc5179359b6a9fa7c46bf73df99c4f72c1fc;hp=3ebe62f49e9120034e6ec8686ae46b359dd6ceff;hpb=8f608a4cb22ab232cfab20665050764b38bac9c7;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+remote-interaction/remote-interaction.component.ts b/client/src/app/+remote-interaction/remote-interaction.component.ts index 3ebe62f49..775cc580c 100644 --- a/client/src/app/+remote-interaction/remote-interaction.component.ts +++ b/client/src/app/+remote-interaction/remote-interaction.component.ts @@ -1,13 +1,13 @@ import { forkJoin } from 'rxjs' import { Component, OnInit } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' -import { VideoChannel } from '@app/shared/shared-main' +import { Video, VideoChannel } from '@app/shared/shared-main' import { SearchService } from '@app/shared/shared-search' @Component({ selector: 'my-remote-interaction', templateUrl: './remote-interaction.component.html', - styleUrls: ['./remote-interaction.component.scss'] + styleUrls: [ './remote-interaction.component.scss' ] }) export class RemoteInteractionComponent implements OnInit { error = '' @@ -39,7 +39,7 @@ export class RemoteInteractionComponent implements OnInit { if (videoResult.data.length !== 0) { const video = videoResult.data[0] - redirectUrl = '/videos/watch/' + video.uuid + redirectUrl = Video.buildWatchUrl(video) } else if (channelResult.data.length !== 0) { const channel = new VideoChannel(channelResult.data[0])