This commit is contained in:
JustArchi
2019-02-10 06:35:20 +01:00
parent c400f05ed6
commit 2347925b1c
5 changed files with 113 additions and 17 deletions

View File

@@ -59,7 +59,7 @@ namespace ArchiSteamFarm.IPC.Controllers.Api {
command = command.Substring(ASF.GlobalConfig.CommandPrefix.Length);
}
string response = await targetBot.Commands.Response(ASF.GlobalConfig.SteamOwnerID, command, false).ConfigureAwait(false);
string response = await targetBot.Commands.Response(ASF.GlobalConfig.SteamOwnerID, command).ConfigureAwait(false);
return Ok(new GenericResponse<string>(response));
}