From 414133ce5b4d7b9d1030dcfaba38c91aa17dce8f Mon Sep 17 00:00:00 2001 From: f Date: Wed, 18 Dec 2024 15:13:55 -0300 Subject: [PATCH] fix: informar la ruta #17335 --- app/controllers/concerns/exception_handler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/concerns/exception_handler.rb b/app/controllers/concerns/exception_handler.rb index 42b7932b..852d7d5f 100644 --- a/app/controllers/concerns/exception_handler.rb +++ b/app/controllers/concerns/exception_handler.rb @@ -22,7 +22,7 @@ module ExceptionHandler flash[:error] = I18n.t('errors.site_not_found') - ExceptionNotifier.notify_exception(exception) + ExceptionNotifier.notify_exception(exception, data: { path: request.fullpath }) redirect_to sites_path end