Skip to content

Commit

Permalink
- fixes an integration issue between two sets of changes
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet authored and andreaTP committed Oct 20, 2023
1 parent ec1c7fa commit 1566a0f
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 1566a0f

Please sign in to comment.