diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-14 14:27:37 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-14 14:27:37 -0500 |
| commit | c2e9df41dc288c3a57e98cb8d89c6c49ecb59814 (patch) | |
| tree | 1d1affab1752a81a1221b5daebc3f7e967ba3394 /Emby.Common.Implementations/IO/ManagedFileSystem.cs | |
| parent | fdb67f17840182b7285424f771ac3583398cd5b5 (diff) | |
fix PathSeparator
Diffstat (limited to 'Emby.Common.Implementations/IO/ManagedFileSystem.cs')
| -rw-r--r-- | Emby.Common.Implementations/IO/ManagedFileSystem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Common.Implementations/IO/ManagedFileSystem.cs b/Emby.Common.Implementations/IO/ManagedFileSystem.cs index 83bb50f94..4fb70d4e2 100644 --- a/Emby.Common.Implementations/IO/ManagedFileSystem.cs +++ b/Emby.Common.Implementations/IO/ManagedFileSystem.cs @@ -61,7 +61,7 @@ namespace Emby.Common.Implementations.IO { get { - return Path.DirectorySeparatorChar; + return Path.PathSeparator; } } |
