diff options
author | kontrollanten <6680299+kontrollanten@users.noreply.github.com> | 2021-03-23 08:14:16 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-03-24 18:18:41 +0100 |
commit | 7bd455cb7ff05568944db070f3548b88728ecc67 (patch) | |
tree | e3be61c3b0bec76815394f8eeac3ab623ffd1ada | |
parent | faeec106efec3353ba2db8a3df597d85023d4711 (diff) | |
download | PeerTube-7bd455cb7ff05568944db070f3548b88728ecc67.tar.gz PeerTube-7bd455cb7ff05568944db070f3548b88728ecc67.tar.zst PeerTube-7bd455cb7ff05568944db070f3548b88728ecc67.zip |
client(video/download): set direct dl as default
-rw-r--r-- | client/src/app/shared/shared-video-miniature/video-download.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-video-miniature/video-download.component.ts b/client/src/app/shared/shared-video-miniature/video-download.component.ts index a57e4ce6d..e0b7b51ff 100644 --- a/client/src/app/shared/shared-video-miniature/video-download.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-download.component.ts | |||
@@ -18,7 +18,7 @@ type FileMetadata = { [key: string]: { label: string, value: string }} | |||
18 | export class VideoDownloadComponent { | 18 | export class VideoDownloadComponent { |
19 | @ViewChild('modal', { static: true }) modal: ElementRef | 19 | @ViewChild('modal', { static: true }) modal: ElementRef |
20 | 20 | ||
21 | downloadType: 'direct' | 'torrent' = 'torrent' | 21 | downloadType: 'direct' | 'torrent' = 'direct' |
22 | resolutionId: number | string = -1 | 22 | resolutionId: number | string = -1 |
23 | subtitleLanguageId: string | 23 | subtitleLanguageId: string |
24 | 24 | ||