From afc984f3bcc27acc795abc83ee9a7e34d3475446 Mon Sep 17 00:00:00 2001 From: Khwezi Mngoma Date: Mon, 1 Jun 2026 09:25:46 +0200 Subject: [PATCH] Fixed mdf file name hasher --- LiteCharms.Features.TechShop/Leads/LeadService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LiteCharms.Features.TechShop/Leads/LeadService.cs b/LiteCharms.Features.TechShop/Leads/LeadService.cs index 4469e03..ecaf004 100644 --- a/LiteCharms.Features.TechShop/Leads/LeadService.cs +++ b/LiteCharms.Features.TechShop/Leads/LeadService.cs @@ -28,7 +28,7 @@ public class LeadService(IDbContextFactory contextFactory) FeedItemId = request.FeedItemId, Status = LeadStatus.New, TargetId = request.TargetId, - AttributionHash = HashService.StringToSha256Hash.Invoke($"{request.ClickId}{request.AppClickId}{request.WebClickId}") + AttributionHash = HashService.StringToSha256Hash($"{request.ClickId}{request.AppClickId}{request.WebClickId}") }); return await context.SaveChangesAsync(cancellationToken) > 0