From 51a072808f5cb065b7d0b444f6d537c6eb62a1a3 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Thu, 15 Oct 2020 15:36:42 +0900 Subject: [PATCH] If a password fail to be reset by mail, show proper error (fix #1986) --- BTCPayServer/Controllers/AccountController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/AccountController.cs b/BTCPayServer/Controllers/AccountController.cs index adc95f775..524a45642 100644 --- a/BTCPayServer/Controllers/AccountController.cs +++ b/BTCPayServer/Controllers/AccountController.cs @@ -606,7 +606,7 @@ namespace BTCPayServer.Controllers } AddErrors(result); - return View(); + return View(model); } [HttpGet]