fix: change upload name
This commit is contained in:
@@ -31,11 +31,16 @@ public class UpdateDocumentHandler(IUnitOfWork uow, IMapper mapper, IDocumentCon
|
||||
|
||||
if (doc.Type == DocumentType.Document)
|
||||
{
|
||||
await contentStore.EnsureBucketAsync(doc.ProjectId, ct);
|
||||
var previousKey = doc.StorageKey;
|
||||
var bytes = Encoding.UTF8.GetBytes(request.Content ?? "");
|
||||
using (var ms = new MemoryStream(bytes))
|
||||
{
|
||||
await contentStore.UploadAsync(doc.ProjectId, doc.Id, "text/html; charset=utf-8", ms, ct);
|
||||
doc.StorageKey = await contentStore.UploadAsync(doc.ProjectId, doc.Title, "text/html; charset=utf-8", ms, ct);
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(previousKey) && previousKey != doc.StorageKey)
|
||||
{
|
||||
await contentStore.DeleteAsync(previousKey, ct);
|
||||
}
|
||||
|
||||
doc.ContentSize = bytes.Length;
|
||||
|
||||
Reference in New Issue
Block a user