From fa99945aa9d90d0c398b1bdecd4de6f1c828b336 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Wed, 21 Jan 2015 18:41:00 +0100 Subject: [PATCH] STatus and msg were reversed on promote peer error --- vroom.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vroom.pl b/vroom.pl index e32a3a9..85b75e2 100755 --- a/vroom.pl +++ b/vroom.pl @@ -1574,8 +1574,8 @@ any '/api' => sub { } return $self->render( json => { - msg => 'error', - status => $self->l('ERROR_OCCURRED') + status => 'error', + msg => $self->l('ERROR_OCCURRED') } ); }