aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2019-11-04 10:38:53 -0500
committerAndrew Mahone <andrew.mahone@gmail.com>2019-11-04 10:38:53 -0500
commitbd545891c0327eb155198c4e835f874156f416a6 (patch)
treeeb4073f3e9fe1627776c67cecd507239998c4458
parent7110069b399496979aa8fdc701d0e1af536425f7 (diff)
Indentation fix.
-rw-r--r--MediaBrowser.Api/Attachments/AttachmentService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Attachments/AttachmentService.cs b/MediaBrowser.Api/Attachments/AttachmentService.cs
index d8771f8c0..9fceebd3b 100644
--- a/MediaBrowser.Api/Attachments/AttachmentService.cs
+++ b/MediaBrowser.Api/Attachments/AttachmentService.cs
@@ -50,8 +50,8 @@ namespace MediaBrowser.Api.Attachments
public async Task<object> Get(GetAttachment request)
{
var item = (Video)_libraryManager.GetItemById(request.Id);
- var (attachment, attachmentStream) = await GetAttachment(request).ConfigureAwait(false);
- var mime = string.IsNullOrWhiteSpace(attachment.MIMEType) ? "application/octet-stream" : attachment.MIMEType;
+ var (attachment, attachmentStream) = await GetAttachment(request).ConfigureAwait(false);
+ var mime = string.IsNullOrWhiteSpace(attachment.MIMEType) ? "application/octet-stream" : attachment.MIMEType;
return ResultFactory.GetResult(Request, attachmentStream, mime);
}