aboutsummaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorasuyou <asuyou@users.noreply.github.com>2021-11-19 18:01:02 +0000
committerasuyou <asuyou@users.noreply.github.com>2021-11-19 18:01:02 +0000
commit99c366e5c29a80b3d836fca22c37a7be523fc311 (patch)
tree7e608d7ac60e20f7a4d403f4a991e299b7b8df25 /ui
parentQuality stays the same if it exists on next format (diff)
downloadmetube-99c366e5c29a80b3d836fca22c37a7be523fc311.tar.gz
metube-99c366e5c29a80b3d836fca22c37a7be523fc311.tar.bz2
metube-99c366e5c29a80b3d836fca22c37a7be523fc311.zip
Audio quality sorting now follows mp4
Diffstat (limited to 'ui')
-rw-r--r--ui/src/app/formats.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/app/formats.ts b/ui/src/app/formats.ts
index bb2fe07..15be903 100644
--- a/ui/src/app/formats.ts
+++ b/ui/src/app/formats.ts
@@ -38,9 +38,9 @@ export const Formats: Format[] = [
text: 'MP3',
qualities: [
{ id: 'best', text: 'Best' },
- { id: '128', text: '128 kbps' },
- { id: '192', text: '192 kbps' },
{ id: '320', text: '320 kbps' },
+ { id: '192', text: '192 kbps' },
+ { id: '128', text: '128 kbps' },
],
},
];
bgstack15