diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-15 19:13:10 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-15 19:13:10 +0300 |
| commit | f809df07060dc3a27167f68027eb03bdbc89221a (patch) | |
| tree | d8728d0ef292d7b0af618f0858a5d1d63c231561 /Software/Visual_Studio/Web/Tango.MachineService/Controllers | |
| parent | ef24521f35a9430c4a307c5225594376f7bf82bb (diff) | |
| download | Tango-f809df07060dc3a27167f68027eb03bdbc89221a.tar.gz Tango-f809df07060dc3a27167f68027eb03bdbc89221a.zip | |
File Associations DDE!!
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers')
| -rw-r--r-- | Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs | 2 |
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); |
