Fix checking invitation reponse

This commit is contained in:
Daniel Berteaud 2015-08-07 08:45:22 +02:00
parent 44639502be
commit 5b0fc34888
1 changed files with 4 additions and 2 deletions

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' ));
});