Prefer chapter list with more info

This commit is contained in:
ByteHamster 2022-01-22 15:14:44 +01:00
parent e9e1fc14c3
commit b28a98067f
1 changed files with 15 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public class ChapterMerger {
if (Math.abs(chapterTarget.getStart() - chapterOther.getStart()) > 1000) {
Log.e(TAG, "Chapter lists are too different. Cancelling merge.");
return chapters1;
return score(chapters1) > score(chapters2) ? chapters1 : chapters2;
}
if (TextUtils.isEmpty(chapterTarget.getImageUrl())) {
@ -53,4 +53,18 @@ public class ChapterMerger {
return chapters2;
}
}
/**
* Tries to give a score that can determine which list of chapters a user might want to see.
*/
private static int score(List<Chapter> chapters) {
int score = 0;
for (Chapter chapter : chapters) {
score = score
+ (TextUtils.isEmpty(chapter.getTitle()) ? 0 : 1)
+ (TextUtils.isEmpty(chapter.getLink()) ? 0 : 1)
+ (TextUtils.isEmpty(chapter.getImageUrl()) ? 0 : 1);
}
return score;
}
}