Browse Source

Update MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs

formatting

Co-Authored-By: Bond-009 <bond.009@outlook.com>

Andrew Mahone 5 năm trước cách đây
mục cha
commit
2f728fd2a1

+ 1 - 1
MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs

@@ -89,7 +89,7 @@ namespace MediaBrowser.MediaEncoding.Attachments
             MediaAttachment mediaAttachment,
             CancellationToken cancellationToken)
         {
-            var inputFiles = new[] {mediaSource.Path};
+            var inputFiles = new[] { mediaSource.Path };
             var attachmentPath = await GetReadableFile(mediaSource.Path, inputFiles, mediaSource.Protocol, mediaAttachment, cancellationToken).ConfigureAwait(false);
             var stream = await GetAttachmentStream(attachmentPath, cancellationToken).ConfigureAwait(false);
             return stream;