diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-13 00:08:23 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-13 00:08:23 -0400 |
| commit | b38b7a706268fe5d92d8cbe703a188b58ed7ec4d (patch) | |
| tree | 10e7ed3d900edd66d4d2d0f41e8512b38f70f907 /MediaBrowser.Controller/Entities/Studio.cs | |
| parent | 5e821947491c07eb65db4653db674af55bc4e90b (diff) | |
rework filestream
Diffstat (limited to 'MediaBrowser.Controller/Entities/Studio.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Studio.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Studio.cs b/MediaBrowser.Controller/Entities/Studio.cs index b8ad691a9..2e5e6ce43 100644 --- a/MediaBrowser.Controller/Entities/Studio.cs +++ b/MediaBrowser.Controller/Entities/Studio.cs @@ -114,7 +114,12 @@ namespace MediaBrowser.Controller.Entities } } - public static string GetPath(string name, bool normalizeName = true) + public static string GetPath(string name) + { + return GetPath(name, true); + } + + public static string GetPath(string name, bool normalizeName) { // Trim the period at the end because windows will have a hard time with that var validName = normalizeName ? |
