storage: allow any read-seekable data as encoded content
1 file changed, 2 insertions(+), 2 deletions(-)
changed files
M internal/storage/files/file.go → internal/storage/files/file.go
@@ -46,8 +46,8 @@ Path: path, ContentType: mime.TypeByExtension(filepath.Ext(filename)), LastModified: stat.ModTime(), Etag: etag, - Encodings: map[string]*buffer.Buffer{ - "identity": buf, + Encodings: map[string]io.ReadSeeker{ + "identity": f, }, }