aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ServerApplicationPaths.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-03-12 12:51:11 -0400
committerGitHub <noreply@github.com>2019-03-12 12:51:11 -0400
commit6751560228d8d48970ab5ae51f0f73c505f8e137 (patch)
treee3ecd8c17be990fc36b2f866734ed987c7ce5b32 /Emby.Server.Implementations/ServerApplicationPaths.cs
parent2012eb5e11f1c6a1d75ffbbfa99c5c08ef856c2b (diff)
parent3c4043199accbfe7995dd6060c89fc837300884a (diff)
Merge pull request #1092 from joshuaboniface/configurable-webdir
Add configurable webdir option
Diffstat (limited to 'Emby.Server.Implementations/ServerApplicationPaths.cs')
-rw-r--r--Emby.Server.Implementations/ServerApplicationPaths.cs6
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)
{
}