Sort list of sources in migration alphabetically

This commit is contained in:
arkon 2020-05-16 12:12:03 -04:00
parent 5f9df78ab0
commit 39e1e11f99

View File

@ -61,6 +61,7 @@ class MigrationPresenter(
val header = SelectionHeader()
return library.map { it.source }.toSet()
.mapNotNull { if (it != LocalSource.ID) sourceManager.getOrStub(it) else null }
.sortedBy { it.name }
.map { SourceItem(it, header) }
}