mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Fix videos list params
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user