From 87ebd0029b238500118e760912e53a0f0b3dbaac Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Sat, 22 Mar 2025 18:38:35 +0300 Subject: [PATCH] chore: show default value when profile info is not set --- handlers/application/menuhandler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handlers/application/menuhandler.go b/handlers/application/menuhandler.go index 9497b3d..56dc661 100644 --- a/handlers/application/menuhandler.go +++ b/handlers/application/menuhandler.go @@ -1170,9 +1170,9 @@ func (h *MenuHandlers) GetProfileInfo(ctx context.Context, sym string, input []b offerings := getEntryOrDefault(store.ReadEntry(ctx, sessionId, storedb.DATA_OFFERINGS)) alias := getEntryOrDefault(store.ReadEntry(ctx, sessionId, storedb.DATA_ACCOUNT_ALIAS)) - if alias != defaultValue { + if alias != defaultValue && alias != "" { alias = strings.Split(alias, ".")[0] - } else if alias == "" { + } else { alias = defaultValue }