소스 검색

Indentation fix.

Andrew Mahone 5 년 전
부모
커밋
bd545891c0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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)
         {
             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);
         }