diff options
author | 2023-11-27 16:39:44 +0100 | |
---|---|---|
committer | 2023-11-27 15:39:44 +0000 | |
commit | 33ee61575f2fc15c5a85c3fdbb3823a0cd22d25d (patch) | |
tree | 5e887d5ea5b828c84a1a9eb386bbaa07ad63a420 /internal/db/bundb/instance.go | |
parent | [docs] Add docs about memory requirements and swap (#2385) (diff) | |
download | gotosocial-33ee61575f2fc15c5a85c3fdbb3823a0cd22d25d.tar.xz |
[bugfix] Don't copy ptr fields in caches (#2386)
Diffstat (limited to 'internal/db/bundb/instance.go')
-rw-r--r-- | internal/db/bundb/instance.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/bundb/instance.go b/internal/db/bundb/instance.go index 6fec3f2fe..567a44ee2 100644 --- a/internal/db/bundb/instance.go +++ b/internal/db/bundb/instance.go @@ -173,14 +173,14 @@ func (i *instanceDB) getInstance(ctx context.Context, lookup string, dbQuery fun } // Further populate the instance fields where applicable. - if err := i.populateInstance(ctx, instance); err != nil { + if err := i.PopulateInstance(ctx, instance); err != nil { return nil, err } return instance, nil } -func (i *instanceDB) populateInstance(ctx context.Context, instance *gtsmodel.Instance) error { +func (i *instanceDB) PopulateInstance(ctx context.Context, instance *gtsmodel.Instance) error { var ( err error errs = gtserror.NewMultiError(2) |