Fixed ragfair-offer_not_found_in_profile locale message missing profile id

This commit is contained in:
Chomp
2025-11-12 15:29:43 +00:00
parent 3aedde5acc
commit fb578fc54b
@@ -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"));
}