Skip to content

Commit

Permalink
DLC Sync fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SlejmUr committed Sep 18, 2023
1 parent 9a6b6ba commit 7f54cbd
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions PayCheckServerLib/Responses/DLCSync.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ public class PutDLC
[HTTP("PUT", "/platform/public/namespaces/pd3/users/{UserId}/dlc/steam/sync")]
public static bool PUT_DLC_SteamSync(HttpRequest request, PC3Server.PC3Session session)
{
var body = JsonConvert.DeserializeObject<PutDLC>(request.Body);
return false;
//var body = JsonConvert.DeserializeObject<PutDLC>(request.Body);
ResponseCreator response = new ResponseCreator(204);
response.SetHeader("Content-Type", "application/json");
session.SendResponse(response.GetResponse());
return true;
}
}
}

0 comments on commit 7f54cbd

Please sign in to comment.