Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
yakikotori committed Aug 10, 2023
1 parent 8feee68 commit c9e25eb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions BotLooter/Looting/LootClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ public LootClient(SteamAccountCredentials credentials, SteamUserSession steamSes
_steamWeb = steamWeb;

_sendTradeOfferPolicy = Policy
.HandleResult<RestResponse<SendTradeOfferResponse>>(res => {
if (res.StatusCode != HttpStatusCode.InternalServerError) {
.HandleResult<RestResponse<SendTradeOfferResponse>>(res =>
{
if (res.StatusCode != HttpStatusCode.InternalServerError)
{
return false;
}

Expand Down

0 comments on commit c9e25eb

Please sign in to comment.