diff options
author | 1RandomDev <84292805+1RandomDev@users.noreply.github.com> | 2022-06-06 16:26:53 +0200 |
---|---|---|
committer | 1RandomDev <84292805+1RandomDev@users.noreply.github.com> | 2022-06-06 16:26:53 +0200 |
commit | de322ad5d138187aca24aff080c2db58f9845d25 (patch) | |
tree | 8298aa3ef2885e2e3b7685505bd4281815266da6 /ui | |
parent | Merge pull request #144 from shalak/enhance_bookmarklets (diff) | |
download | metube-de322ad5d138187aca24aff080c2db58f9845d25.tar.gz metube-de322ad5d138187aca24aff080c2db58f9845d25.tar.bz2 metube-de322ad5d138187aca24aff080c2db58f9845d25.zip |
Added option for thumbnail only
Diffstat (limited to 'ui')
-rw-r--r-- | ui/src/app/formats.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ui/src/app/formats.ts b/ui/src/app/formats.ts index 15be903..a3bf3e8 100644 --- a/ui/src/app/formats.ts +++ b/ui/src/app/formats.ts @@ -43,4 +43,11 @@ export const Formats: Format[] = [ { id: '128', text: '128 kbps' }, ], }, + { + id: 'thumbnail', + text: 'Thumbnail', + qualities: [ + { id: 'best', text: 'Best' } + ], + }, ]; |