Skip to content

Commit

Permalink
feat(fdc3) - Fixing AppMetadata could not be deserialized (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilla28 authored Nov 29, 2023
1 parent a2d71ff commit aae879b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Fdc3/AppMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace MorganStanley.Fdc3
public class AppMetadata : AppIdentifier, IAppMetadata
{
public AppMetadata(string appId, string? instanceId = null, string? name = null, string? version = null, string? title = null,
string? tooltip = null, string? description = null, IEnumerable<IIcon>? icons = null, IEnumerable<IImage>? images = null,
string? tooltip = null, string? description = null, IEnumerable<IIcon>? icons = null, IEnumerable<IImage>? screenshots = null,
string? resultType = null)
: base(appId, instanceId)
{
Expand All @@ -34,7 +34,7 @@ public AppMetadata(string appId, string? instanceId = null, string? name = null,
this.Tooltip = tooltip;
this.Description = description;
this.Icons = icons ?? Enumerable.Empty<IIcon>();
this.Screenshots = images ?? Enumerable.Empty<IImage>();
this.Screenshots = screenshots ?? Enumerable.Empty<IImage>();
this.ResultType = resultType;
}

Expand Down

0 comments on commit aae879b

Please sign in to comment.