Add new Bot actions + a lot of performance improvements

This commit is contained in:
JustArchi
2018-09-19 18:25:17 +02:00
parent 708b7ebe67
commit 5abace39f9
16 changed files with 193 additions and 676 deletions

View File

@@ -35,7 +35,7 @@ namespace ArchiSteamFarm.IPC.Controllers.Api {
return BadRequest(new GenericResponse<object>(false, string.Format(Strings.ErrorIsEmpty, nameof(structure))));
}
Type targetType = Utilities.ParseType(structure);
Type targetType = WebUtilities.ParseType(structure);
if (targetType == null) {
return BadRequest(new GenericResponse<object>(false, string.Format(Strings.ErrorIsInvalid, structure)));