summaryrefslogtreecommitdiff
path: root/vendor/codeberg.org/gruf/go-kv/field.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2023-02-19 09:36:38 +0000
committerLibravatar GitHub <noreply@github.com>2023-02-19 10:36:38 +0100
commit51c156cca1b88e2f5bcf649c86a7e7736ffbb652 (patch)
tree6187d78b93a051256226e68d66e72ba4c0cfa409 /vendor/codeberg.org/gruf/go-kv/field.go
parent[bugfix] In Postgres, drop shortcodedomain constraint before creating new emo... (diff)
downloadgotosocial-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.go')
-rw-r--r--vendor/codeberg.org/gruf/go-kv/field.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/codeberg.org/gruf/go-kv/field.go b/vendor/codeberg.org/gruf/go-kv/field.go
index 86a53b173..79c43822a 100644
--- a/vendor/codeberg.org/gruf/go-kv/field.go
+++ b/vendor/codeberg.org/gruf/go-kv/field.go
@@ -75,7 +75,7 @@ type Field struct {
// Key returns the formatted key string of this Field.
func (f Field) Key() string {
buf := byteutil.Buffer{B: make([]byte, 0, bufsize/2)}
- AppendQuoteKey(&buf, f.K)
+ AppendQuote(&buf, f.K)
return buf.String()
}