Remove sorting from listing of metadata on home page

This commit is contained in:
mitchell 2019-07-31 23:18:28 -04:00
parent 2969189d98
commit a9f41b2ac0
1 changed files with 0 additions and 2 deletions

View File

@ -106,8 +106,6 @@ class _HomeState extends State<Home> with WidgetsBindingObserver {
) {
final Map<String, List<Metadata>> metaMap = {};
metadatas.sort((a, b) => a.id.compareTo(b.id));
for (var metadata in metadatas) {
final source = metadata.sourceHost;