소스 검색

Spacing standard on Emby.Server.Implementations/IO/ManagedFileSystem.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
Ken 5 년 전
부모
커밋
d719ca78b4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Emby.Server.Implementations/IO/ManagedFileSystem.cs

+ 1 - 1
Emby.Server.Implementations/IO/ManagedFileSystem.cs

@@ -247,7 +247,7 @@ namespace Emby.Server.Implementations.IO
                     result.Length = fileInfo.Length;
 
                     // Issue #2354 get the size of files behind symbolic links
-                    if(fileInfo.Attributes.HasFlag(FileAttributes.ReparsePoint))
+                    if (fileInfo.Attributes.HasFlag(FileAttributes.ReparsePoint))
                     {
                         using (Stream thisFileStream = File.OpenRead(fileInfo.ToString()))
                         {