mirror of https://github.com/Chocobozzz/PeerTube
Fix videos list params
parent
d414207f07
commit
5b5e333f06
|
@ -54,7 +54,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy {
|
|||
|
||||
ngOnInit () {
|
||||
// Subscribe to route changes
|
||||
const routeParams = this.route.snapshot.params
|
||||
const routeParams = this.route.snapshot.queryParams
|
||||
this.loadRouteParams(routeParams)
|
||||
|
||||
this.resizeSubscription = fromEvent(window, 'resize')
|
||||
|
@ -162,7 +162,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy {
|
|||
|
||||
protected setNewRouteParams () {
|
||||
const routeParams = this.buildRouteParams()
|
||||
this.router.navigate([ this.currentRoute, routeParams ])
|
||||
this.router.navigate([ this.currentRoute ], { queryParams: routeParams })
|
||||
}
|
||||
|
||||
protected buildVideoPages () {
|
||||
|
|
|
@ -39,6 +39,7 @@ export class VideoSearchComponent extends AbstractVideoList implements OnInit, O
|
|||
this.subActivatedRoute = this.route.queryParams.subscribe(
|
||||
queryParams => {
|
||||
const querySearch = queryParams['search']
|
||||
|
||||
if (!querySearch) return this.redirectService.redirectToHomepage()
|
||||
if (this.otherRouteParams.search === querySearch) return
|
||||
|
||||
|
|
Loading…
Reference in New Issue