From 8c15b04d8b307f34560dbc9eeebb3beaccc50241 Mon Sep 17 00:00:00 2001 From: Blair Date: Sat, 29 Jun 2024 11:54:22 +1000 Subject: [PATCH] Fix private property in MarketBoardHistory (#1858) --- Dalamud/Game/Network/Structures/MarketBoardHistory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/Network/Structures/MarketBoardHistory.cs b/Dalamud/Game/Network/Structures/MarketBoardHistory.cs index 354d83c60..7d427336e 100644 --- a/Dalamud/Game/Network/Structures/MarketBoardHistory.cs +++ b/Dalamud/Game/Network/Structures/MarketBoardHistory.cs @@ -34,7 +34,7 @@ public class MarketBoardHistory : IMarketBoardHistory /// /// Gets the list of individual item listings. /// - IReadOnlyList IMarketBoardHistory.HistoryListings => this.InternalHistoryListings; + public IReadOnlyList HistoryListings => this.InternalHistoryListings; /// /// Gets or sets a list of individual item listings.