Move select pool menu to the home page #98

Merged
Alfred-mk merged 2 commits from move-pools-menu into master 2025-07-21 08:24:57 +02:00
Showing only changes of commit 058d802c0f - Show all commits

View File

@ -100,6 +100,10 @@ func (h *MenuHandlers) ViewPool(ctx context.Context, sym string, input []byte) (
flag_incorrect_pool, _ := h.flagManager.GetFlag("flag_incorrect_pool") flag_incorrect_pool, _ := h.flagManager.GetFlag("flag_incorrect_pool")
inputStr := string(input) inputStr := string(input)
if inputStr == "0" || inputStr == "99" || inputStr == "88" || inputStr == "98" {
res.FlagReset = append(res.FlagReset, flag_incorrect_pool)
return res, nil
}
poolData, err := store.GetPoolData(ctx, h.userdataStore, sessionId, inputStr) poolData, err := store.GetPoolData(ctx, h.userdataStore, sessionId, inputStr)
if err != nil { if err != nil {