1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-01 21:11:41 +02:00

Fix checking invitation reponse

This commit is contained in:
Daniel Berteaud 2015-08-07 08:45:22 +02:00
parent 44639502be
commit 5b0fc34888

View File

@ -1481,8 +1481,10 @@ websocket '/socket.io/:ver/websocket/:id' => sub {
)
);
}
delete $peer->{check_invitations};
$self->add_peer($id, $peer);
if (keys %{$invitations} > 0){
delete $peer->{check_invitations};
$self->add_peer($id, $peer);
}
}
$self->send(Protocol::SocketIO::Message->new( type => 'heartbeat' ));
});