aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Updates/InstallationManager.cs
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-06-21 16:15:55 +0100
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2020-06-21 16:15:55 +0100
commit99410f3c975dbcce44b6cdec2e17e9a8d67db30e (patch)
tree27a85340773ee86329259c286b291bac558c6c41 /Emby.Server.Implementations/Updates/InstallationManager.cs
parenta041fe8a2dc03790b8b56a01bb2c1d2c9fd9d690 (diff)
fixes
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
-rw-r--r--Emby.Server.Implementations/Updates/InstallationManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs
index 229e0338c..b6cd5a633 100644
--- a/Emby.Server.Implementations/Updates/InstallationManager.cs
+++ b/Emby.Server.Implementations/Updates/InstallationManager.cs
@@ -387,7 +387,7 @@ namespace Emby.Server.Implementations.Updates
}
// Version folder as they cannot be overwritten in Windows.
- targetDir += package.Version.ToString();
+ targetDir += "." + package.Version.ToString();
if (Directory.Exists(targetDir))
{