From 99c366e5c29a80b3d836fca22c37a7be523fc311 Mon Sep 17 00:00:00 2001 From: asuyou Date: Fri, 19 Nov 2021 18:01:02 +0000 Subject: Audio quality sorting now follows mp4 --- ui/src/app/formats.ts | 4 ++-- 1 file 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' }, ], }, ]; -- cgit