From 1c8bda5ded08175b216bb157ae292ac66d408deb Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Sat, 22 Mar 2025 09:49:19 +0300 Subject: [PATCH] fix(alias): remove alias requests made when a profile item is edited,show a default value when an alias is not set --- handlers/application/menuhandler.go | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/handlers/application/menuhandler.go b/handlers/application/menuhandler.go index e2d8751..9497b3d 100644 --- a/handlers/application/menuhandler.go +++ b/handlers/application/menuhandler.go @@ -1121,7 +1121,12 @@ func (h *MenuHandlers) GetCurrentProfileInfo(ctx context.Context, sym string, in logg.ErrorCtxf(ctx, "Failed to read account alias entry with", "key", "error", storedb.DATA_ACCOUNT_ALIAS, err) return res, err } - res.Content = string(profileInfo) + alias := string(profileInfo) + if alias == "" { + res.Content = defaultValue + } else { + res.Content = alias + } default: break } @@ -1167,6 +1172,8 @@ func (h *MenuHandlers) GetProfileInfo(ctx context.Context, sym string, input []b if alias != defaultValue { alias = strings.Split(alias, ".")[0] + } else if alias == "" { + alias = defaultValue } // Construct the full name @@ -1247,20 +1254,10 @@ func (h *MenuHandlers) UpdateAllProfileItems(ctx context.Context, sym string, in if !ok { return res, fmt.Errorf("missing session") } - flag_alias_set, _ := h.flagManager.GetFlag("flag_alias_set") - aliasSet := h.st.MatchFlag(flag_alias_set, true) - err := h.insertProfileItems(ctx, sessionId, &res) if err != nil { return res, err } - //Only request an alias if it has not been set yet: - if !aliasSet { - err = h.constructAccountAlias(ctx) - if err != nil { - return res, err - } - } return res, nil }