mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-21 09:49:34 +00:00
Fix misleading variable name
This commit is contained in:
parent
fde5505b5f
commit
5326ad4dea
1 changed files with 2 additions and 2 deletions
|
@ -52,9 +52,9 @@ namespace LBPUnion.ProjectLighthouse.Controllers
|
||||||
if (token == null) return this.StatusCode(403, "");
|
if (token == null) return this.StatusCode(403, "");
|
||||||
|
|
||||||
List<string?> serializedUsers = new();
|
List<string?> serializedUsers = new();
|
||||||
foreach (string userId in u)
|
foreach (string username in u)
|
||||||
{
|
{
|
||||||
string? serializedUser = await this.GetSerializedUser(userId, token.GameVersion);
|
string? serializedUser = await this.GetSerializedUser(username, token.GameVersion);
|
||||||
if (serializedUser != "") serializedUsers.Add(serializedUser);
|
if (serializedUser != "") serializedUsers.Add(serializedUser);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue