import { VideoService } from '../../shared/video/video.service'
import { Account } from '@app/shared/account/account.model'
import { AccountService } from '@app/shared/account/account.service'
-import { tap } from 'rxjs/operators'
+import { first, tap } from 'rxjs/operators'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { Subscription } from 'rxjs'
import { ScreenService } from '@app/shared/misc/screen.service'
// Parent get the account for us
this.accountSub = this.accountService.accountLoaded
- .subscribe(account => {
- this.account = account
+ .pipe(first())
+ .subscribe(account => {
+ this.account = account
- this.reloadVideos()
- this.generateSyndicationList()
- })
+ this.reloadVideos()
+ this.generateSyndicationList()
+ })
}
ngOnDestroy () {
import { VideoService } from '../../shared/video/video.service'
import { VideoChannelService } from '@app/shared/video-channel/video-channel.service'
import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
-import { tap } from 'rxjs/operators'
+import { first, tap } from 'rxjs/operators'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { Subscription } from 'rxjs'
import { ScreenService } from '@app/shared/misc/screen.service'
// Parent get the video channel for us
this.videoChannelSub = this.videoChannelService.videoChannelLoaded
- .subscribe(videoChannel => {
- this.videoChannel = videoChannel
+ .pipe(first())
+ .subscribe(videoChannel => {
+ this.videoChannel = videoChannel
- this.reloadVideos()
- this.generateSyndicationList()
- })
+ this.reloadVideos()
+ this.generateSyndicationList()
+ })
}
ngOnDestroy () {
try {
resetScroll = false
- const previousUrl = new URL(window.location.origin + e1.url)
- const nextUrl = new URL(window.location.origin + e2.url)
+ const previousUrl = new URL(window.location.origin + e1.urlAfterRedirects)
+ const nextUrl = new URL(window.location.origin + e2.urlAfterRedirects)
if (previousUrl.pathname !== nextUrl.pathname) {
resetScroll = true