mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix(Network): correct serialized types for delete request
This commit is contained in:
parent
89314e0c0e
commit
6768a3c0fc
2 changed files with 4 additions and 4 deletions
|
|
@ -11,13 +11,13 @@ namespace Dalamud.Game.Network.MarketBoardUploaders.Universalis
|
|||
/// Gets or sets the object ID of the retainer associated with the sale.
|
||||
/// </summary>
|
||||
[JsonProperty("retainerID")]
|
||||
public ulong RetainerId { get; set; }
|
||||
public string RetainerId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the object ID of the item listing.
|
||||
/// </summary>
|
||||
[JsonProperty("listingID")]
|
||||
public ulong ListingId { get; set; }
|
||||
public string ListingId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the item ID of the item that was purchased.
|
||||
|
|
|
|||
|
|
@ -152,8 +152,8 @@ namespace Dalamud.Game.Network.Universalis.MarketBoardUploaders
|
|||
ItemId = itemId,
|
||||
PricePerUnit = purchaseHandler.PricePerUnit,
|
||||
Quantity = purchaseHandler.ItemQuantity,
|
||||
ListingId = purchaseHandler.ListingId,
|
||||
RetainerId = purchaseHandler.RetainerId,
|
||||
ListingId = purchaseHandler.ListingId.ToString(),
|
||||
RetainerId = purchaseHandler.RetainerId.ToString(),
|
||||
UploaderId = this.dalamud.ClientState.LocalContentId.ToString(),
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue