Use sort_unstable
rather than sort
when creating listings
This commit is contained in:
parent
1036e90238
commit
98fcfd7f5e
@ -45,7 +45,7 @@ impl<R: Read + Send + Seek> ListingStream<R> {
|
||||
let listing = listing?;
|
||||
list.push(listing);
|
||||
}
|
||||
list.sort();
|
||||
list.sort_unstable();
|
||||
Ok(list)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user