[AO] Fix audio res output
This commit is contained in:
parent
ba08c7b4e7
commit
f1982d1cd5
1 changed files with 1 additions and 1 deletions
2
ao.ts
2
ao.ts
|
|
@ -516,7 +516,7 @@ export default class AnimeOnegai implements ServiceClass {
|
||||||
const audios = selectedList.audio.map(item => {
|
const audios = selectedList.audio.map(item => {
|
||||||
return {
|
return {
|
||||||
...item,
|
...item,
|
||||||
resolutionText: `${Math.round(item.bandwidth/1000)}kB/s`
|
resolutionText: `${Math.round(item.bandwidth/1024)}kB/s`
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue