diff options
Diffstat (limited to 'client/src/app/shared/shared-video-miniature')
-rw-r--r-- | client/src/app/shared/shared-video-miniature/abstract-video-list.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-video-miniature/abstract-video-list.ts b/client/src/app/shared/shared-video-miniature/abstract-video-list.ts index 14a29d05f..5361f6d6c 100644 --- a/client/src/app/shared/shared-video-miniature/abstract-video-list.ts +++ b/client/src/app/shared/shared-video-miniature/abstract-video-list.ts | |||
@@ -382,8 +382,9 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy, AfterConte | |||
382 | } | 382 | } |
383 | 383 | ||
384 | private getUrlWithoutParams () { | 384 | private getUrlWithoutParams () { |
385 | let urlTree = this.router.parseUrl(this.router.url) | 385 | const urlTree = this.router.parseUrl(this.router.url) |
386 | urlTree.queryParams = {} | 386 | urlTree.queryParams = {} |
387 | |||
387 | return urlTree.toString() | 388 | return urlTree.toString() |
388 | } | 389 | } |
389 | } | 390 | } |