aboutsummaryrefslogtreecommitdiff
path: root/Timeline/Services/PathProvider.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/Services/PathProvider.cs')
-rw-r--r--Timeline/Services/PathProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Services/PathProvider.cs b/Timeline/Services/PathProvider.cs
index 1f6b629a..eefbf41a 100644
--- a/Timeline/Services/PathProvider.cs
+++ b/Timeline/Services/PathProvider.cs
@@ -21,7 +21,7 @@ namespace Timeline.Services
public PathProvider(IConfiguration configuration)
{
_configuration = configuration;
- _workingDirectory = configuration.GetValue<string>("WorkDir");
+ _workingDirectory = configuration.GetValue<string?>("WorkDir") ?? "/timeline";
}
public string GetWorkingDirectory()