aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/formats.ts
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/app/formats.ts')
-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