fix: change upload name
This commit is contained in:
@@ -56,11 +56,10 @@ public class CreateDocumentHandler(IUnitOfWork uow, IMapper mapper, IDocumentCon
|
||||
|
||||
if (request.Type == DocumentType.Document && !string.IsNullOrEmpty(request.Content))
|
||||
{
|
||||
await contentStore.EnsureBucketAsync(doc.ProjectId, ct);
|
||||
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);
|
||||
}
|
||||
|
||||
doc.ContentSize = bytes.Length;
|
||||
|
||||
Reference in New Issue
Block a user