diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-08-16 16:59:37 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2020-08-16 16:59:37 +0300 |
| commit | 721b364fc9845e448658ef6ab5486a00bc0a53bf (patch) | |
| tree | 82296b0cd86629f3c72b0e25b27e77e89ecb1703 /Software/Visual_Studio/Web/Tango.MachineService/Controllers | |
| parent | 3e1ed2d141c21e9378ddc3624dd9688f6d832c66 (diff) | |
| parent | e47e602cd61bcca8eb7fbef40dc4aa8798510ccc (diff) | |
| download | Tango-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')
| -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); |
