aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2020-08-16 16:59:37 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2020-08-16 16:59:37 +0300
commit721b364fc9845e448658ef6ab5486a00bc0a53bf (patch)
tree82296b0cd86629f3c72b0e25b27e77e89ecb1703 /Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
parent3e1ed2d141c21e9378ddc3624dd9688f6d832c66 (diff)
parente47e602cd61bcca8eb7fbef40dc4aa8798510ccc (diff)
downloadTango-721b364fc9845e448658ef6ab5486a00bc0a53bf.tar.gz
Tango-721b364fc9845e448658ef6ab5486a00bc0a53bf.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs')
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
index 387430f89..b9dacfcf9 100644
--- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
@@ -200,7 +200,7 @@ namespace Tango.MachineService.Controllers
String comments = String.Join(Environment.NewLine, versions.OrderBy(x => Version.Parse(x.Version)).Where(x => Version.Parse(x.Version) > currentVersion).Select(x => x.Comments));
- if (latestVersion != null && Version.Parse(latestVersion.Version) != currentVersion)
+ if (latestVersion != null && Version.Parse(latestVersion.Version) > currentVersion)
{
var manager = new BlobStorageManager();
var container = manager.GetContainer(MachineServiceConfig.FSE_VERSIONS_CONTAINER);