Room names are case insensitive: convert to lower case

master
Daniel Berteaud 10 years ago
parent 8ecbeb32a6
commit ddff031cec
  1. 1
      vroom.pl

@ -1262,6 +1262,7 @@ any '/api' => sub {
} }
elsif ($req->{action} eq 'create_room'){ elsif ($req->{action} eq 'create_room'){
$req->{param}->{room} ||= $self->get_random_name(); $req->{param}->{room} ||= $self->get_random_name();
$req->{param}->{room} = lc $req->{param}->{room};
my $json = { my $json = {
err => 'ERROR_OCCURRED', err => 'ERROR_OCCURRED',
msg => $self->l('ERROR_OCCURRED'), msg => $self->l('ERROR_OCCURRED'),

Loading…
Cancel
Save