chore: show default value when profile info is not set

This commit is contained in:
Carlosokumu 2025-03-22 18:38:35 +03:00
parent b941cf2562
commit 87ebd0029b
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -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
}