Browse Source

Indentation fix.

Andrew Mahone 5 years ago
parent
commit
bd545891c0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      MediaBrowser.Api/Attachments/AttachmentService.cs

+ 2 - 2
MediaBrowser.Api/Attachments/AttachmentService.cs

@@ -50,8 +50,8 @@ namespace MediaBrowser.Api.Attachments
         public async Task<object> Get(GetAttachment request)
         public async Task<object> Get(GetAttachment request)
         {
         {
             var item = (Video)_libraryManager.GetItemById(request.Id);
             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);
             return ResultFactory.GetResult(Request, attachmentStream, mime);
         }
         }