diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-03-10 16:17:48 -0400 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-03-10 16:17:48 -0400 |
| commit | 93d15cd96972588bbbc29a9398c9d4b050d30411 (patch) | |
| tree | c21e1c10a619fa92131ba5aa75a88f9b515218fd /Emby.Server.Implementations/ServerApplicationPaths.cs | |
| parent | 4b91c9bf66b1205481a973b3f5dea51fc3cd758f (diff) | |
Add configuration flag for Web directory
Diffstat (limited to 'Emby.Server.Implementations/ServerApplicationPaths.cs')
| -rw-r--r-- | Emby.Server.Implementations/ServerApplicationPaths.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/ServerApplicationPaths.cs b/Emby.Server.Implementations/ServerApplicationPaths.cs index 05f6469ec..adaf23234 100644 --- a/Emby.Server.Implementations/ServerApplicationPaths.cs +++ b/Emby.Server.Implementations/ServerApplicationPaths.cs @@ -17,11 +17,13 @@ namespace Emby.Server.Implementations string programDataPath, string logDirectoryPath, string configurationDirectoryPath, - string cacheDirectoryPath) + string cacheDirectoryPath, + string webDirectoryPath) : base(programDataPath, logDirectoryPath, configurationDirectoryPath, - cacheDirectoryPath) + cacheDirectoryPath, + webDirectoryPath) { } |
