Remove choice data in logout (#1555)

This commit is contained in:
Clément OUDOT 2018-11-28 11:37:21 +01:00
parent 6c61d9346f
commit f41d92ac5e
1 changed files with 1 additions and 0 deletions

View File

@ -56,6 +56,7 @@ sub authLogout {
$_[0]->checkChoice( $_[1] ) or return PE_OK;
my $res = $_[1]->data->{enabledMods0}->[0]->authLogout( $_[1] );
delete $_[1]->pdata->{_choice};
delete $_[1]->data->{_authChoice};
return $res;
}