diff options
author | 2021-09-11 20:18:06 +0100 | |
---|---|---|
committer | 2021-09-11 20:18:06 +0100 | |
commit | 7f36688643dfa6a08d032ffdb61cbf1c5370d3c4 (patch) | |
tree | b623b44349eee12133a2cada1d2b1d6a19b2f626 /internal/processing/media/delete.go | |
parent | add git.iim.gay/grufwub/go-store for storage backend, replacing blob.Storage (diff) | |
download | gotosocial-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/delete.go')
-rw-r--r-- | internal/processing/media/delete.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/processing/media/delete.go b/internal/processing/media/delete.go index 1c81417c3..e99b4e950 100644 --- a/internal/processing/media/delete.go +++ b/internal/processing/media/delete.go @@ -24,14 +24,14 @@ func (p *processor) Delete(ctx context.Context, mediaAttachmentID string) gtserr // delete the thumbnail from storage if attachment.Thumbnail.Path != "" { - if err := p.store.Delete(attachment.Thumbnail.Path); err != nil { + if err := p.storage.Delete(attachment.Thumbnail.Path); err != nil { errs = append(errs, fmt.Sprintf("remove thumbnail at path %s: %s", attachment.Thumbnail.Path, err)) } } // delete the file from storage if attachment.File.Path != "" { - if err := p.store.Delete(attachment.File.Path); err != nil { + if err := p.storage.Delete(attachment.File.Path); err != nil { errs = append(errs, fmt.Sprintf("remove file at path %s: %s", attachment.File.Path, err)) } } |