diff options
author | 2022-11-06 12:30:08 +0000 | |
---|---|---|
committer | 2022-11-06 13:30:08 +0100 | |
commit | 05a8baa53ae7983b8fa2d79589ff0cab7ab1b22b (patch) | |
tree | 041f88f0f035df2c3793565d44700e0e5fe09c2d /cmd | |
parent | [docs] add note about Alpha status right at the top (#971) (diff) | |
download | gotosocial-05a8baa53ae7983b8fa2d79589ff0cab7ab1b22b.tar.xz |
[bugfix] KVStore doesn't like lost+found directory (#972)
* bump go-store version to v2.0.5, init kv.KVStore without initial clean (as we are using for storage, not as a key-value store)
Signed-off-by: kim <grufwub@gmail.com>
* remove newline
Signed-off-by: kim <grufwub@gmail.com>
Signed-off-by: kim <grufwub@gmail.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/gotosocial/action/server/server.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/gotosocial/action/server/server.go b/cmd/gotosocial/action/server/server.go index e695e0789..3da9e997c 100644 --- a/cmd/gotosocial/action/server/server.go +++ b/cmd/gotosocial/action/server/server.go @@ -104,7 +104,6 @@ var Start action.GTSAction = func(ctx context.Context) error { typeConverter := typeutils.NewConverter(dbService) // Open the storage backend - storage, err := gtsstorage.AutoConfig() if err != nil { return fmt.Errorf("error creating storage backend: %w", err) |