Update MediaBrowser.MediaEncoding/Attachments/AttachmentExtractor.cs

formatting

Co-Authored-By: Bond-009 <bond.009@outlook.com>
This commit is contained in:
Andrew Mahone 2019-11-07 11:58:26 -05:00 committed by GitHub
parent 743685110c
commit 2f728fd2a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;