aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/ManagedFileSystem.cs
diff options
context:
space:
mode:
authorKen <kbrazier@gmail.com>2020-07-18 19:39:31 -0600
committerGitHub <noreply@github.com>2020-07-18 19:39:31 -0600
commitd719ca78b40695b02b03c912b636652545eff3e8 (patch)
tree6d221522a60fd0810b4847a9d9a84c5f20fa080b /Emby.Server.Implementations/IO/ManagedFileSystem.cs
parent6a39b1a4ca2b025dc094c364ebebeffacb285beb (diff)
Spacing standard on Emby.Server.Implementations/IO/ManagedFileSystem.cs
Co-authored-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'Emby.Server.Implementations/IO/ManagedFileSystem.cs')
-rw-r--r--Emby.Server.Implementations/IO/ManagedFileSystem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/IO/ManagedFileSystem.cs b/Emby.Server.Implementations/IO/ManagedFileSystem.cs
index 530c16195..08e0cf447 100644
--- a/Emby.Server.Implementations/IO/ManagedFileSystem.cs
+++ b/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()))
{