aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-04 09:52:38 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-12-04 09:52:38 -0500
commit4e79eaf65e8edb895f9337a8b878ff9ef312b3f6 (patch)
treeae9f74aad256236ada5203fae1f1640867d13360 /MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
parent40959a816f49d040e16e0178d0e11d51282d98cc (diff)
add ApplicationPath to app paths interface to hide implementation
Diffstat (limited to 'MediaBrowser.Server.Implementations/ServerApplicationPaths.cs')
-rw-r--r--MediaBrowser.Server.Implementations/ServerApplicationPaths.cs13
1 files changed, 6 insertions, 7 deletions
diff --git a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
index fb3c5aec8..db538f8dd 100644
--- a/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
+++ b/MediaBrowser.Server.Implementations/ServerApplicationPaths.cs
@@ -13,16 +13,16 @@ namespace MediaBrowser.Server.Implementations
/// <summary>
/// Initializes a new instance of the <see cref="ServerApplicationPaths" /> class.
/// </summary>
- public ServerApplicationPaths()
- : base(true)
+ public ServerApplicationPaths(string applicationPath)
+ : base(true, applicationPath)
{
}
#else
/// <summary>
/// Initializes a new instance of the <see cref="ServerApplicationPaths"/> class.
/// </summary>
- public ServerApplicationPaths()
- : base(false)
+ public ServerApplicationPaths(string applicationPath)
+ : base(false, applicationPath)
{
}
#endif
@@ -30,9 +30,8 @@ namespace MediaBrowser.Server.Implementations
/// <summary>
/// Initializes a new instance of the <see cref="BaseApplicationPaths" /> class.
/// </summary>
- /// <param name="programDataPath">The program data path.</param>
- public ServerApplicationPaths(string programDataPath)
- : base(programDataPath)
+ public ServerApplicationPaths(string programDataPath, string applicationPath)
+ : base(programDataPath, applicationPath)
{
}