mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
fix issue with random concurrency issue on interaction reaction
This commit is contained in:
@ -107,6 +107,17 @@ namespace WebfrontCore.Controllers
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
if (meta is null)
|
||||
{
|
||||
return BadRequest(new[]
|
||||
{
|
||||
new CommandResponseInfo
|
||||
{
|
||||
Response = "INVALID"
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
var metaDict = JsonSerializer.Deserialize<Dictionary<string, string>>(meta.TrimEnd('"').TrimStart('"'));
|
||||
|
||||
|
Reference in New Issue
Block a user