mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-02 05:43:40 +01:00
fix(Network): correct delete endpoint path
This commit is contained in:
parent
c4d574732f
commit
a376b3da91
2 changed files with 3 additions and 2 deletions
|
|
@ -157,7 +157,7 @@ namespace Dalamud.Game.Network.Universalis.MarketBoardUploaders
|
|||
};
|
||||
|
||||
var purchaseUpload = JsonConvert.SerializeObject(purchaseRequest);
|
||||
client.UploadString(ApiBase + $"/{worldId}/{itemId}/delete", "POST", purchaseUpload);
|
||||
client.UploadString(ApiBase + $"/api/{worldId}/{itemId}/delete", "POST", purchaseUpload);
|
||||
Log.Verbose(purchaseUpload);
|
||||
|
||||
Log.Verbose("Universalis purchase upload completed.");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue