aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Attachments/AttachmentService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/Attachments/AttachmentService.cs')
-rw-r--r--MediaBrowser.Api/Attachments/AttachmentService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Attachments/AttachmentService.cs b/MediaBrowser.Api/Attachments/AttachmentService.cs
index ef09951b6..1632ca1b0 100644
--- a/MediaBrowser.Api/Attachments/AttachmentService.cs
+++ b/MediaBrowser.Api/Attachments/AttachmentService.cs
@@ -45,7 +45,7 @@ namespace MediaBrowser.Api.Attachments
public async Task<object> Get(GetAttachment request)
{
var (attachment, attachmentStream) = await GetAttachment(request).ConfigureAwait(false);
- var mime = string.IsNullOrWhiteSpace(attachment.MIMEType) ? "application/octet-stream" : attachment.MIMEType;
+ var mime = string.IsNullOrWhiteSpace(attachment.MimeType) ? "application/octet-stream" : attachment.MimeType;
return ResultFactory.GetResult(Request, attachmentStream, mime);
}