X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2F%2Bvideo-channels%2Fvideo-channel-videos%2Fvideo-channel-videos.component.ts;h=2045a095d28169feca573a84334ee33ce6f75f56;hb=19041ac885f98de5494476376b65d454c656b230;hp=70c4374e01d132cc39ddfea237b9bbf1ebdcbc4f;hpb=f8b2c1b4f509c037b9650cca2c5befd21f056df3;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts b/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts index 70c4374e0..2045a095d 100644 --- a/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts +++ b/client/src/app/+video-channels/video-channel-videos/video-channel-videos.component.ts @@ -1,6 +1,5 @@ import { Component, OnDestroy, OnInit } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' -import { Location } from '@angular/common' import { immutableAssign } from '@app/shared/misc/utils' import { AuthService } from '../../core/auth' import { ConfirmService } from '../../core/confirm' @@ -12,7 +11,7 @@ import { tap } from 'rxjs/operators' import { I18n } from '@ngx-translate/i18n-polyfill' import { Subscription } from 'rxjs' import { ScreenService } from '@app/shared/misc/screen.service' -import { Notifier } from '@app/core' +import { Notifier, ServerService } from '@app/core' @Component({ selector: 'my-video-channel-videos', @@ -24,8 +23,6 @@ import { Notifier } from '@app/core' }) export class VideoChannelVideosComponent extends AbstractVideoList implements OnInit, OnDestroy { titlePage: string - marginContent = false // Disable margin - currentRoute = '/video-channels/videos' loadOnInit = false private videoChannel: VideoChannel @@ -33,13 +30,13 @@ export class VideoChannelVideosComponent extends AbstractVideoList implements On constructor ( protected router: Router, + protected serverService: ServerService, protected route: ActivatedRoute, protected authService: AuthService, protected notifier: Notifier, protected confirmService: ConfirmService, - protected location: Location, protected screenService: ScreenService, - protected i18n: I18n, + private i18n: I18n, private videoChannelService: VideoChannelService, private videoService: VideoService ) { @@ -55,7 +52,6 @@ export class VideoChannelVideosComponent extends AbstractVideoList implements On this.videoChannelSub = this.videoChannelService.videoChannelLoaded .subscribe(videoChannel => { this.videoChannel = videoChannel - this.currentRoute = '/video-channels/' + this.videoChannel.uuid + '/videos' this.reloadVideos() this.generateSyndicationList()