diff options
| author | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-06-22 11:57:46 +0100 |
|---|---|---|
| committer | BaronGreenback <jimcartlidge@yahoo.co.uk> | 2020-06-22 11:57:46 +0100 |
| commit | a25a233b75df380d87f1fdca8738b32938095ab4 (patch) | |
| tree | a65cf81e37a41bafc5fe096791a3987b9a650293 /Emby.Server.Implementations/Updates/InstallationManager.cs | |
| parent | bf1bbbdd3e72657d0e36a7a2b80c89d03fc40ba8 (diff) | |
Using Version class.
Diffstat (limited to 'Emby.Server.Implementations/Updates/InstallationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Updates/InstallationManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Updates/InstallationManager.cs b/Emby.Server.Implementations/Updates/InstallationManager.cs index b6cd5a633..1fa71e673 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)) { |
