1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-26 17:43:29 +02:00

Fix participant last_activity

This commit is contained in:
Daniel Berteaud 2014-10-13 20:22:35 +02:00
parent 6a92875ae0
commit 85da128bff

View File

@ -326,9 +326,9 @@ helper add_participant => sub {
my $sth = eval {
$self->db->prepare('INSERT IGNORE INTO `participants`
(`room_id`,`participant`,`last_activity`)
VALUES (?,?,?)');
VALUES (?,?,CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'))');
} || return undef;
$sth->execute($room->{id},$participant,time()) || return undef;
$sth->execute($room->{id},$participant) || return undef;
$self->app->log->info($self->session('name') . " joined the room $name");
return 1;
};