1
0
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:
RaidMax
2022-10-24 18:53:30 -05:00
parent d81e3e4261
commit 455759787a
2 changed files with 37 additions and 11 deletions

View File

@ -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('"'));