From fb578fc54bd2242f03603775f0047728d5c05c6c Mon Sep 17 00:00:00 2001 From: Chomp Date: Wed, 12 Nov 2025 15:29:43 +0000 Subject: [PATCH] Fixed `ragfair-offer_not_found_in_profile` locale message missing profile id --- Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs b/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs index f7bb313d..cbd30a25 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/RagfairController.cs @@ -1019,7 +1019,7 @@ public class RagfairController( var playerOffer = playerProfileOffers?.FirstOrDefault(x => x.Id == offerId); if (playerOffer is null) { - logger.Error(localisationService.GetText("ragfair-offer_not_found_in_profile", new { offerId })); + logger.Error(localisationService.GetText("ragfair-offer_not_found_in_profile", new { offerId, profileId = sessionId })); return httpResponseUtil.AppendErrorToOutput(output, localisationService.GetText("ragfair-offer_not_found_in_profile_short")); }