diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/Content/RemoteStreamContent.cs b/framework/src/Volo.Abp.Core/Volo/Abp/Content/RemoteStreamContent.cs index 613697dc5b..602c1aec21 100644 --- a/framework/src/Volo.Abp.Core/Volo/Abp/Content/RemoteStreamContent.cs +++ b/framework/src/Volo.Abp.Core/Volo/Abp/Content/RemoteStreamContent.cs @@ -14,6 +14,7 @@ namespace Volo.Abp.Content public RemoteStreamContent(Stream stream, string fileName): this(stream) { FileName = fileName; + ContentType = "application/octet-stream"; } public virtual string ContentType { get; set; }