mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-04-03 02:01:05 +02:00
fixing a crash, do not try loading checklist fragment after fail
This commit is contained in:
parent
2542f6ea8f
commit
3a08647ce1
@ -62,16 +62,15 @@ class ChecklistFragment : NoteFragment(), ChecklistItemsListener {
|
|||||||
|
|
||||||
// checklist title can be null only because of the glitch in upgrade to 6.6.0, remove this check in the future
|
// checklist title can be null only because of the glitch in upgrade to 6.6.0, remove this check in the future
|
||||||
items = items.filter { it.title != null }.toMutableList() as ArrayList<ChecklistItem>
|
items = items.filter { it.title != null }.toMutableList() as ArrayList<ChecklistItem>
|
||||||
|
val sorting = config?.sorting ?: 0
|
||||||
|
if (sorting and SORT_BY_CUSTOM == 0 && config?.moveDoneChecklistItems == true) {
|
||||||
|
items.sortBy { it.isDone }
|
||||||
|
}
|
||||||
|
|
||||||
|
setupFragment()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
migrateCheckListOnFailure(storedNote)
|
migrateCheckListOnFailure(storedNote)
|
||||||
}
|
}
|
||||||
|
|
||||||
val sorting = config?.sorting ?: 0
|
|
||||||
if (sorting and SORT_BY_CUSTOM == 0 && config?.moveDoneChecklistItems == true) {
|
|
||||||
items.sortBy { it.isDone }
|
|
||||||
}
|
|
||||||
|
|
||||||
setupFragment()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user