From e2ea3b3ccc40f4f3882b5fdc759b57ad4ebd7c4a Mon Sep 17 00:00:00 2001 From: Peter Sanchez Date: Sat, 9 Mar 2024 09:24:09 -0600 Subject: [PATCH] Fixing typo. References: https://todo.code.netlandish.com/~netlandish/links/66 --- core/inputs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/inputs.go b/core/inputs.go index 744f443..5356a94 100644 --- a/core/inputs.go +++ b/core/inputs.go @@ -197,7 +197,7 @@ func (i *ImportForm) Validate(c echo.Context) error { if i.Origin == safariOrigin || i.Origin == chromeOrigin || i.Origin == firefoxOrigin { if ext != ".html" { lt := localizer.GetSessionLocalizer(c) - err = fmt.Errorf(lt.Translate("The file submitted for this source should be hmtl")) + err = fmt.Errorf(lt.Translate("The file submitted for this source should be html")) return validate.InputErrors{"File": err} } } else if i.Origin == pinBoardOrigin && ext != ".json" { -- 2.43.0