Adding a basic skillet to the new voice server - fixed some connection issues

This commit is contained in:
WolverinDEV
2020-08-03 13:51:47 +02:00
parent e49b091b92
commit fa7a390fe3
16 changed files with 190 additions and 107 deletions
+3 -1
View File
@@ -583,8 +583,10 @@ command_result ConnectedClient::handleCommandServerGroupClientList(Command &cmd)
notify[index]["client_unique_identifier"] = clientEntry.uid;
index++;
}
if(index == 0)
if(index == 0 && this->getType() != ClientType::CLIENT_TEAMSPEAK) {
return ts::command_result{error::database_empty_result};
}
this->sendCommand(notify);
return command_result{error::ok};