From f1982d1cd5bb7ed7228355e15c676fd009ca2ec9 Mon Sep 17 00:00:00 2001 From: AnimeDL Date: Wed, 17 Apr 2024 12:46:35 -0700 Subject: [PATCH] [AO] Fix audio res output --- ao.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ao.ts b/ao.ts index 4cbbccf..d1659e2 100644 --- a/ao.ts +++ b/ao.ts @@ -516,7 +516,7 @@ export default class AnimeOnegai implements ServiceClass { const audios = selectedList.audio.map(item => { return { ...item, - resolutionText: `${Math.round(item.bandwidth/1000)}kB/s` + resolutionText: `${Math.round(item.bandwidth/1024)}kB/s` }; });