From 95b2863df2718722a9addd93ac1e88f4debc5235 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Tue, 24 Mar 2020 10:52:05 -0600 Subject: admin: Fix regex for removing @id fields (closes #3187) --- admin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'admin.go') diff --git a/admin.go b/admin.go index 212637f..77ec7ab 100644 --- a/admin.go +++ b/admin.go @@ -776,7 +776,7 @@ var ( // in the config. It also matches adjacent commas so that syntax // can be preserved no matter where in the object the field appears. // It supports string and most numeric values. -var idRegexp = regexp.MustCompile(`(?m),?\s*"` + idKey + `":\s?(-?[0-9]+(\.[0-9]+)?|(?U)".*")\s*,?`) +var idRegexp = regexp.MustCompile(`(?m),?\s*"` + idKey + `"\s*:\s*(-?[0-9]+(\.[0-9]+)?|(?U)".*")\s*,?`) const ( rawConfigKey = "config" -- cgit v1.2.3