aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-02-02 09:45:42 +0100
committerChocobozzz <me@florianbigard.com>2021-02-02 09:45:42 +0100
commit40930fda8615a9e0196e99602419cb74dda75e02 (patch)
tree5eafa64ec07938e44193175b97d5587b75e05f55 /client/src
parent89613cb444b4e1601d202153d0ec8635392ec872 (diff)
downloadPeerTube-40930fda8615a9e0196e99602419cb74dda75e02.tar.gz
PeerTube-40930fda8615a9e0196e99602419cb74dda75e02.tar.zst
PeerTube-40930fda8615a9e0196e99602419cb74dda75e02.zip
Transcode audio uploads to lower resolutions
Better consistency
Diffstat (limited to 'client/src')
-rw-r--r--client/src/app/shared/shared-video-miniature/abstract-video-list.ts3
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}