ensure the number is valid

This commit is contained in:
Alfred Kamanda 2026-02-20 13:33:43 +03:00
parent e5b9a8955d
commit a2e2c0d68e
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -418,7 +418,7 @@ func (h *MenuHandlers) MaxAmount(ctx context.Context, sym string, input []byte)
// Get the recipient's phone number to read other data items (*)
recipientPhoneNumber, err := userStore.ReadEntry(ctx, sessionId, storedb.DATA_RECIPIENT_PHONE_NUMBER)
if err != nil {
if err != nil || !phone.IsValidPhoneNumber(string(recipientPhoneNumber)) {
// revert to normal transaction
res.FlagReset = append(res.FlagReset, flag_swap_transaction)
res.Content = l.Get("Maximum amount: %s %s\nEnter amount:", formattedBalance, string(activeSym))