Float-based Volumes (#2659)
This commit is contained in:
parent
6fdc9228df
commit
f6af6d66be
44 changed files with 3106 additions and 184 deletions
|
|
@ -113,9 +113,9 @@ export class DownloadService {
|
|||
case 'series':
|
||||
return (downloadEntity as Series).name;
|
||||
case 'volume':
|
||||
return (downloadEntity as Volume).number + '';
|
||||
return (downloadEntity as Volume).minNumber + '';
|
||||
case 'chapter':
|
||||
return (downloadEntity as Chapter).number;
|
||||
return (downloadEntity as Chapter).minNumber;
|
||||
case 'bookmark':
|
||||
return '';
|
||||
case 'logs':
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ export class UtilityService {
|
|||
|
||||
|
||||
sortChapters = (a: Chapter, b: Chapter) => {
|
||||
return parseFloat(a.number) - parseFloat(b.number);
|
||||
return parseFloat(a.minNumber) - parseFloat(b.minNumber);
|
||||
}
|
||||
|
||||
mangaFormatToText(format: MangaFormat): string {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue