Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Removing C# 6 syntax to make appveyor happy
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueRaja committed Mar 12, 2016
1 parent c7f055c commit 2821031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SteamTrade/TradeOffer/TradeOfferManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void EnqueueUpdatedOffers()

private void AddTradeOffersToQueue(OffersResponse offers)
{
if (offers?.AllOffers == null)
if (offers == null || offers.AllOffers == null)
return;

lock(unhandledTradeOfferUpdates)
Expand Down

0 comments on commit 2821031

Please sign in to comment.