diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-08 14:31:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-08 14:33:04 -0400 |
| commit | 2f0c2b4c660260e1cc34e66fdf0ee6f22115b8b7 (patch) | |
| tree | 7e1c13c0f54b43cca228c2a2fc3af5aced6b7a90 /Emby.Common.Implementations | |
| parent | 8457da7eacb047ca73b02b42f04f971ed7f1002b (diff) | |
update linux iso mounter
Diffstat (limited to 'Emby.Common.Implementations')
| -rw-r--r-- | Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs b/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs index 5da1ae2dc..ad6e35700 100644 --- a/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs +++ b/Emby.Common.Implementations/EnvironmentInfo/EnvironmentInfo.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.IO; using System.Linq; using System.Runtime.InteropServices; using System.Threading.Tasks; @@ -75,6 +76,14 @@ namespace Emby.Common.Implementations.EnvironmentInfo } } + public char PathSeparator + { + get + { + return Path.PathSeparator; + } + } + public MediaBrowser.Model.System.Architecture SystemArchitecture { get |
