From b12f34a856dc728a1e7c429e19dfbbde6d10d972 Mon Sep 17 00:00:00 2001 From: Artem Tsyrulnikov Date: Sat, 28 Feb 2026 13:45:32 +0300 Subject: [PATCH] fix --- tg_bot/screens/purchase_optional_details.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tg_bot/screens/purchase_optional_details.go b/tg_bot/screens/purchase_optional_details.go index 580fae6..96faf3a 100644 --- a/tg_bot/screens/purchase_optional_details.go +++ b/tg_bot/screens/purchase_optional_details.go @@ -2702,8 +2702,8 @@ func normalizePurchaseTypeValue(raw string) *string { normalized := strings.ToLower(raw) normalized = strings.TrimSpace(strings.Trim(normalized, ".")) switch normalized { - case "взаимный пиар", "взаимнопиар", "mutual_pr", "mutual pr", "вп", "vp": - value := "mutual_pr" + case "взаимный пиар", "взаимнопиар", "self_promo", "mutual_pr", "mutual pr", "вп", "vp": + value := "self_promo" return &value case "стандарт", "standard": value := "standard"