diff --git a/CHANGELOG.md b/CHANGELOG.md index efd31a33..6f47d22b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -## [2.15.4](https://github.com/Terradue/Stars/compare/2.15.3...2.15.4) +## [2.15.5](https://github.com/Terradue/Stars/compare/2.15.4...2.15.5) -Feature/esacpe 1597 +### Commits + +- Fix nre fox DataHub when only icon [`5004100`](https://github.com/Terradue/Stars/commit/500410096624d77312501e471cb5937761cede49) + +## [2.15.4](https://github.com/Terradue/Stars/compare/2.15.3...2.15.4) - 2023-08-29 ### Merged diff --git a/src/Stars.Console/Terradue.Stars.Console.csproj b/src/Stars.Console/Terradue.Stars.Console.csproj index 5d53f05c..4058b986 100644 --- a/src/Stars.Console/Terradue.Stars.Console.csproj +++ b/src/Stars.Console/Terradue.Stars.Console.csproj @@ -2,7 +2,7 @@ Exe net6.0 - 2.15.4 + 2.15.5 Stars is a CLI for working with Spatio Temporal Catalog such as STAC but not only $(Version)-$(VersionSuffix) diff --git a/src/Stars.Data/Routers/DataHubResultItemRoutable.cs b/src/Stars.Data/Routers/DataHubResultItemRoutable.cs index a567332d..f268a0dd 100644 --- a/src/Stars.Data/Routers/DataHubResultItemRoutable.cs +++ b/src/Stars.Data/Routers/DataHubResultItemRoutable.cs @@ -26,8 +26,10 @@ public override IReadOnlyDictionary Assets { get { - if (assets != null) + if (assets != null && assets.Count > 0) return assets; + assets = new Dictionary(); + var enclosureAccess = supplier.Wrapper.GetEnclosureAccess(osItem); try { diff --git a/src/Stars.Data/Terradue.Stars.Data.csproj b/src/Stars.Data/Terradue.Stars.Data.csproj index b713a04c..59e72ecd 100644 --- a/src/Stars.Data/Terradue.Stars.Data.csproj +++ b/src/Stars.Data/Terradue.Stars.Data.csproj @@ -4,7 +4,7 @@ Terradue.Stars.Data Terradue.Stars.Data Collection of data Plugins for Terradue.Stars - 2.15.4 + 2.15.5 $(Version)-$(VersionSuffix) NU1603 diff --git a/src/Stars.Services/Terradue.Stars.Services.csproj b/src/Stars.Services/Terradue.Stars.Services.csproj index eb1aa0d9..11b88b26 100644 --- a/src/Stars.Services/Terradue.Stars.Services.csproj +++ b/src/Stars.Services/Terradue.Stars.Services.csproj @@ -3,7 +3,7 @@ netstandard2.0 Terradue.Stars Stars is a set of services for working with Spatio Temporal Catalog such as STAC but not only - 2.15.4 + 2.15.5 $(Version)-$(VersionSuffix) Terradue.Stars.Services