Skip to content
This repository has been archived by the owner on May 19, 2020. It is now read-only.

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
barisyild committed Sep 13, 2018
1 parent c0a8a5b commit a4a4a71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions OnPSApp/OnPS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="netstandard" />
</ItemGroup>
<ItemGroup>
<Compile Include="GameStatistic.cs">
Expand Down
2 changes: 1 addition & 1 deletion OnPSApp/Platforms/Steam.cs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private void OnDisconnected(SteamClient.DisconnectedCallback callback)

private void OnLoginKey(SteamUser.LoginKeyCallback callback)
{
if (string.IsNullOrEmpty(callback?.LoginKey))
if (string.IsNullOrEmpty(callback.LoginKey))
{
return;
}
Expand Down

0 comments on commit a4a4a71

Please sign in to comment.