diff --git a/src/commands/aur.rs b/src/commands/aur.rs index 43a582f..35a6f84 100644 --- a/src/commands/aur.rs +++ b/src/commands/aur.rs @@ -21,6 +21,7 @@ pub fn query_aur(ctx: Context, msg: Message, args: Vec<&str>) { .partial_cmp(&b.popularity) .unwrap_or(std::cmp::Ordering::Less) }); + response.results.reverse(); respond_with_results(msg.channel_id, &response.results, &ctx); }