Updated to 1.4.13 ;)

This commit is contained in:
WolverinDEV
2020-04-16 14:05:58 +02:00
parent 9705f84bc0
commit b79b496ad1
11 changed files with 411 additions and 83 deletions
+1 -2
View File
@@ -167,8 +167,7 @@ int GroupManager::insertGroupFromDb(int count, char **values, char **column) {
groupId = (GroupType) stoll(values[index]);
else if(strcmp(column[index], "displayName") == 0)
targetName = values[index];
else if(strcmp(column[index], "serverId") == 0);
else cerr << "Invalid group table row " << column[index] << endl;
//else cerr << "Invalid group table row " << column[index] << endl;
}
if((size_t) groupId == 0 || (size_t) target == 0xff || (size_t) type == 0xff || targetName.empty()) {