mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +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.
|
/// Gets or sets the object ID of the retainer associated with the sale.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("retainerID")]
|
[JsonProperty("retainerID")]
|
||||||
public ulong RetainerId { get; set; }
|
public string RetainerId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the object ID of the item listing.
|
/// Gets or sets the object ID of the item listing.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("listingID")]
|
[JsonProperty("listingID")]
|
||||||
public ulong ListingId { get; set; }
|
public string ListingId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the item ID of the item that was purchased.
|
/// Gets or sets the item ID of the item that was purchased.
|
||||||
|
|
|
||||||
|
|
@ -152,8 +152,8 @@ namespace Dalamud.Game.Network.Universalis.MarketBoardUploaders
|
||||||
ItemId = itemId,
|
ItemId = itemId,
|
||||||
PricePerUnit = purchaseHandler.PricePerUnit,
|
PricePerUnit = purchaseHandler.PricePerUnit,
|
||||||
Quantity = purchaseHandler.ItemQuantity,
|
Quantity = purchaseHandler.ItemQuantity,
|
||||||
ListingId = purchaseHandler.ListingId,
|
ListingId = purchaseHandler.ListingId.ToString(),
|
||||||
RetainerId = purchaseHandler.RetainerId,
|
RetainerId = purchaseHandler.RetainerId.ToString(),
|
||||||
UploaderId = this.dalamud.ClientState.LocalContentId.ToString(),
|
UploaderId = this.dalamud.ClientState.LocalContentId.ToString(),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue