From 5f1a65978943c70d357e798c3440760bacece0d1 Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Fri, 24 Jan 2025 11:41:00 +0300 Subject: [PATCH] request alias on initial profile setup --- handlers/application/menuhandler.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/handlers/application/menuhandler.go b/handlers/application/menuhandler.go index 777c805..f4b144a 100644 --- a/handlers/application/menuhandler.go +++ b/handlers/application/menuhandler.go @@ -1165,6 +1165,10 @@ func (h *MenuHandlers) UpdateAllProfileItems(ctx context.Context, sym string, in if err != nil { return res, err } + err = h.constructAccountAlias(ctx) + if err != nil { + return res, err + } return res, nil }