aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers
diff options
context:
space:
mode:
authorVictoria Plitt <Victoria.Plitt@twine-s.com>2020-08-17 21:10:12 +0300
committerVictoria Plitt <Victoria.Plitt@twine-s.com>2020-08-17 21:10:12 +0300
commit1ed6a2ad1d92c1d21ab5cf9f87db71dcc043e2dc (patch)
tree6453e5058d718aa9eb8100413a6f2e30bdf86925 /Software/Visual_Studio/Web/Tango.MachineService/Controllers
parentb3327cbb8c457a9a857c1ddee948449dcc63a340 (diff)
parent17aa17776eed59ef62d800654ab238ae59be49db (diff)
downloadTango-1ed6a2ad1d92c1d21ab5cf9f87db71dcc043e2dc.tar.gz
Tango-1ed6a2ad1d92c1d21ab5cf9f87db71dcc043e2dc.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers')
-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);