implement Episode 3 meseta

This commit is contained in:
Martin Michelsen
2023-09-24 16:25:38 -07:00
parent 8b544830a0
commit 058b040975
23 changed files with 561 additions and 459 deletions
+1 -1
View File
@@ -306,7 +306,7 @@ vector<shared_ptr<Client>> Server::get_clients_by_identifier(const string& ident
results.emplace_back(std::move(c));
continue;
}
if (c->license && c->license->username == ident) {
if (c->license && c->license->bb_username == ident) {
results.emplace_back(std::move(c));
continue;
}