adjust content root path (#3527)

This commit is contained in:
kaso17 2018-08-05 07:15:23 +02:00 committed by flightlevel
parent f00d8e192a
commit b94501f054
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ namespace Jackett.Server
try
{
logger.Debug("Creating web host...");
string applicationFolder = configurationService.ApplicationFolder();
string applicationFolder = Path.Combine(configurationService.ApplicationFolder(), "Content");
logger.Debug($"Content root path is: {applicationFolder}");
CreateWebHostBuilder(args, url, applicationFolder).Build().Run();