Add configuration flag for Web directory

This commit is contained in:
Joshua Boniface
2019-03-10 16:17:48 -04:00
parent 4b91c9bf66
commit 93d15cd969
4 changed files with 28 additions and 4 deletions

View File

@@ -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)
{
}