aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/formats.ts
diff options
context:
space:
mode:
authorAlex Shnitman <alexta69@gmail.com>2022-09-30 09:09:41 +0300
committerAlex Shnitman <alexta69@gmail.com>2022-09-30 09:09:41 +0300
commit68d4c89be0a661ce140dee22bb008e949796f655 (patch)
treec8d195e229a7d9b9c98ffe71881fafaf96637320 /ui/src/app/formats.ts
parentremove CI from non-master branch (diff)
parentupgraded yt-dlp (diff)
downloadmetube-68d4c89be0a661ce140dee22bb008e949796f655.tar.gz
metube-68d4c89be0a661ce140dee22bb008e949796f655.tar.bz2
metube-68d4c89be0a661ce140dee22bb008e949796f655.zip
Merge branch 'master' of https://github.com/alexta69/metube into custom-download-folder
Diffstat (limited to 'ui/src/app/formats.ts')
-rw-r--r--ui/src/app/formats.ts7
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' }
+ ],
+ },
];
bgstack15