Commit 0a87135e authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

get_top_destinations: order by count desc

order is ascending by default, resulting in flop instead of top destinations.
parent 94932c41
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2733,7 +2733,7 @@ sub startup {
				where user_id = ?
				and real_dep_ts between ? and ?
				group by arr_eva
				order by count
				order by count desc
				limit 5
			}, $uid, $opt{after}->epoch, $opt{before}->epoch
			);