Timeline consistency debug: do not toast -1->-1, these seem rather common as well

Change-Id: I90bc46dddf0760192221c4936111dd8460046c6c
This commit is contained in:
SpiritCroc 2022-04-19 09:51:21 +02:00
parent ed891a4445
commit ed2b05628a
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ fun checkTimelineConsistency(location: String, events: List<TimelineEvent>, verb
// - The list may omit unsupported events (I guess?), thus causing gaps in the indices.
Timber.w("Possible timeline inconsistency found at $location, $i/${events.size}: ${event.displayIndex}->${prev.displayIndex}, ${event.eventId} -> ${prev.eventId}")
// Toast only those which are particularly suspicious
if (prev.displayIndex != 1 && prev.displayIndex != 0 && prev.displayIndex >= event.displayIndex) {
if (prev.displayIndex != 1 && prev.displayIndex != 0 && prev.displayIndex >= event.displayIndex && !(prev.displayIndex == -1 && event.displayIndex == -1)) {
toastMsg += "${event.displayIndex}->${prev.displayIndex},"
}
potentialIssues++