Fixed Previous Build (#2661)

This commit is contained in:
Joe Milazzo 2024-01-28 12:51:56 -06:00 committed by GitHub
parent e41795f9c2
commit 48aa8cacfd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 19 additions and 15 deletions

View file

@ -43,7 +43,7 @@ export class UtilityService {
sortChapters = (a: Chapter, b: Chapter) => {
return parseFloat(a.minNumber) - parseFloat(b.minNumber);
return parseFloat(a.number) - parseFloat(b.number);
}
mangaFormatToText(format: MangaFormat): string {