Skip to content

Commit

Permalink
Error in create-workspace command in 6.1.0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Shvedun committed Jul 19, 2024
1 parent 74f97ba commit e2c2aa5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion clio/Package/NuGet/CreatioSdkOnline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ private void InitVersionsFromNuget() {

var items = JsonSerializer.Deserialize<Model>(json);
var _ver = items.TopItems.FirstOrDefault().Items.Select(i => i.CatalogEntry.Version);

if (_versions == null) {
_versions = new List<Version>();
}
foreach (var item in _ver) {
_versions.Add(new Version(item));
}
Expand Down

0 comments on commit e2c2aa5

Please sign in to comment.