Merge pull request #5666 from ByteHamster/chapter-merging
Improvements to chapter merging
This commit is contained in:
commit
02241126c5
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -82,7 +82,7 @@ public class ChapterReader extends ID3Reader {
|
|||
break;
|
||||
case FRAME_ID_PICTURE:
|
||||
byte encoding = readByte();
|
||||
String mime = readEncodedString(encoding, frameHeader.getSize());
|
||||
String mime = readIsoStringNullTerminated(frameHeader.getSize());
|
||||
byte type = readByte();
|
||||
String description = readEncodedString(encoding, frameHeader.getSize());
|
||||
Log.d(TAG, "Found apic: " + mime + "," + description);
|
||||
|
|
Loading…
Reference in New Issue