summaryrefslogtreecommitdiff
path: root/internal/processing/media/getfile.go
diff options
context:
space:
mode:
authorLibravatar kim (grufwub) <grufwub@gmail.com>2021-09-11 20:18:06 +0100
committerLibravatar kim (grufwub) <grufwub@gmail.com>2021-09-11 20:18:06 +0100
commit7f36688643dfa6a08d032ffdb61cbf1c5370d3c4 (patch)
treeb623b44349eee12133a2cada1d2b1d6a19b2f626 /internal/processing/media/getfile.go
parentadd git.iim.gay/grufwub/go-store for storage backend, replacing blob.Storage (diff)
downloadgotosocial-7f36688643dfa6a08d032ffdb61cbf1c5370d3c4.tar.xz
rename KVStore uses as storage to differentiate between upcoming store package
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
Diffstat (limited to 'internal/processing/media/getfile.go')
-rw-r--r--internal/processing/media/getfile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processing/media/getfile.go b/internal/processing/media/getfile.go
index f0d27c841..3cfdbe56b 100644
--- a/internal/processing/media/getfile.go
+++ b/internal/processing/media/getfile.go
@@ -110,7 +110,7 @@ func (p *processor) GetFile(ctx context.Context, account *gtsmodel.Account, form
}
}
- bytes, err := p.store.Get(storagePath)
+ bytes, err := p.storage.Get(storagePath)
if err != nil {
return nil, gtserror.NewErrorNotFound(fmt.Errorf("error retrieving from storage: %s", err))
}