Skip to content

Commit

Permalink
Merge pull request #3527 from microsoft/hotfix/integration-issue
Browse files Browse the repository at this point in the history
- fixes an integration issue between two sets of changes
  • Loading branch information
baywet authored Oct 19, 2023
2 parents f19dec5 + 26c0e1e commit f530673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kiota/Rpc/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public async Task<List<LogEntry>> GenerateAsync(string openAPIFilePath, string o
if (deserializers is not null && deserializers.Any())
configuration.Deserializers = deserializers.ToHashSet(StringComparer.OrdinalIgnoreCase);
if (structuredMimeTypes is not null && structuredMimeTypes.Any())
configuration.StructuredMimeTypes = structuredMimeTypes.ToHashSet(StringComparer.OrdinalIgnoreCase);
configuration.StructuredMimeTypes = new(structuredMimeTypes);
if (!string.IsNullOrEmpty(clientClassName))
configuration.ClientClassName = clientClassName;
if (!string.IsNullOrEmpty(clientNamespaceName))
Expand Down

0 comments on commit f530673

Please sign in to comment.