From 97195d9f13b09b6b7586fd3a3b15d3dcde489cd8 Mon Sep 17 00:00:00 2001 From: "sentry[bot]" <39604003+sentry[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 21:15:18 +0100 Subject: [PATCH] fix: Parse transfer date parameter (#1110) Co-authored-by: sentry[bot] <39604003+sentry[bot]@users.noreply.github.com> --- app/controllers/transfers_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/transfers_controller.rb b/app/controllers/transfers_controller.rb index 248f8d4ad..9579cadd0 100644 --- a/app/controllers/transfers_controller.rb +++ b/app/controllers/transfers_controller.rb @@ -17,7 +17,7 @@ class TransfersController < ApplicationController family: Current.family, source_account_id: transfer_params[:from_account_id], destination_account_id: transfer_params[:to_account_id], - date: transfer_params[:date], + date: Date.parse(transfer_params[:date]), amount: transfer_params[:amount].to_d ).create