From 40f1c4b224bc5f2bc038ab4d9ef03184e85fc163 Mon Sep 17 00:00:00 2001 From: Tobie Morgan Hitchcock Date: Wed, 20 Dec 2017 06:51:51 +0000 Subject: [PATCH] Improve error message on scope signin --- web/signin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/signin.go b/web/signin.go index 4b52888f..cc8025fc 100644 --- a/web/signin.go +++ b/web/signin.go @@ -122,7 +122,7 @@ func signin(c *fibre.Context) (err error) { // If the response has no record set then return a 403 error. if len(res[0].Result) != 1 { - m := "Authentication scope signin was unsuccessful: No record created" + m := "Authentication scope signin was unsuccessful: No record returned" return fibre.NewHTTPError(403).WithFields(f).WithMessage(m) }