Remove uninitialized warning

This commit is contained in:
Daniel Berteaud 2015-07-15 08:30:09 +02:00
parent 344ab80b6b
commit 669863843b
1 changed files with 2 additions and 1 deletions

View File

@ -2231,7 +2231,8 @@ group {
# TODO: support several auth method, including an internal one where user are managed
# in our DB, and another where auth is handled by the web server
$self->login;
if ($self->get_key_role($self->session('key'), undef) ne 'admin'){
my $role = $self->get_key_role($self->session('key'), undef);
if (!$role || $role ne 'admin'){
$self->make_key_admin($self->session('key'));
}
$self->purge_rooms;