Skip to content

Commit

Permalink
Merge pull request #622 from xPaw/patch-1
Browse files Browse the repository at this point in the history
Fix nameof() mistake
  • Loading branch information
voided authored Jan 6, 2019
2 parents df0d048 + 737bbe4 commit 11ebfa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SteamKit2/SteamKit2/Steam/Handlers/SteamApps/SteamApps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public AsyncJobMultiple<PICSProductInfoCallback> PICSGetProductInfo( IEnumerable

if ( packages == null )
{
throw new ArgumentNullException( nameof(apps) );
throw new ArgumentNullException( nameof(packages) );
}

var request = new ClientMsgProtobuf<CMsgClientPICSProductInfoRequest>( EMsg.ClientPICSProductInfoRequest );
Expand Down

0 comments on commit 11ebfa5

Please sign in to comment.