diff options
author | 2023-02-19 09:36:38 +0000 | |
---|---|---|
committer | 2023-02-19 10:36:38 +0100 | |
commit | 51c156cca1b88e2f5bcf649c86a7e7736ffbb652 (patch) | |
tree | 6187d78b93a051256226e68d66e72ba4c0cfa409 /vendor/codeberg.org/gruf/go-kv/field_format.go | |
parent | [bugfix] In Postgres, drop shortcodedomain constraint before creating new emo... (diff) | |
download | gotosocial-51c156cca1b88e2f5bcf649c86a7e7736ffbb652.tar.xz |
pull in latest go-kv, go-cache (#1530)
Signed-off-by: kim <grufwub@gmail.com>
Diffstat (limited to 'vendor/codeberg.org/gruf/go-kv/field_format.go')
-rw-r--r-- | vendor/codeberg.org/gruf/go-kv/field_format.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/codeberg.org/gruf/go-kv/field_format.go b/vendor/codeberg.org/gruf/go-kv/field_format.go index 4fa7a8dcf..18f35a6b9 100644 --- a/vendor/codeberg.org/gruf/go-kv/field_format.go +++ b/vendor/codeberg.org/gruf/go-kv/field_format.go @@ -16,7 +16,7 @@ func (f Field) AppendFormat(buf *byteutil.Buffer, vbose bool) { } else /* regular */ { fmtstr = "{:v}" } - AppendQuoteKey(buf, f.K) + AppendQuote(buf, f.K) buf.WriteByte('=') format.Appendf(buf, fmtstr, f.V) } |