diff --git a/server/wsproxy/GCListener.cc b/server/wsproxy/GCListener.cc index 0734db0..40a4d85 100644 --- a/server/wsproxy/GCListener.cc +++ b/server/wsproxy/GCListener.cc @@ -69,7 +69,7 @@ public: std::string team_uuid = a8::Get(request, "team_uuid").GetString(); std::vector strings; a8::Split(team_uuid, strings, '_'); - if (strings.size() > 2) { + if (strings.size() >= 2) { int node_id = a8::XValue(strings[0]); if (node_id != App::Instance()->node_id) { std::string host;