Skip to content
Snippets Groups Projects
Commit 842fcbce authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

get_user_travels: Fix message order

parent b15d3456
No related branches found
No related tags found
No related merge requests found
......@@ -866,7 +866,7 @@ helper 'get_user_travels' => sub {
my ( $ts, $msg ) = split( qr{:}, $message );
push( @parsed_messages, [ epoch_to_dt($ts), $msg ] );
}
$ref->{messages} = [@parsed_messages];
$ref->{messages} = [ reverse @parsed_messages ];
}
}
$prev_action = $action;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment