Skip to content

Commit 42bd396

Browse files
committed
fix: empty security requirements are actually valid. to negate the document ones
Signed-off-by: Vincent Biret <[email protected]>
1 parent f0cd02c commit 42bd396

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

src/Microsoft.OpenApi/Models/OpenApiSecurityRequirement.cs

+3-9
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,13 @@ private void SerializeInternal(IOpenApiWriter writer, Action<IOpenApiWriter, Ope
5555
{
5656
Utils.CheckArgumentNull(writer);
5757

58+
writer.WriteStartObject();
59+
5860
// Reaching this point means the reference to a specific OpenApiSecurityScheme fails.
5961
// We are not able to serialize this SecurityScheme/Scopes key value pair since we do not know what
6062
// string to output.
61-
var validPairs = this.Where(static p => p.Key?.Target is not null).ToArray();
62-
63-
if (validPairs.Length == 0)
64-
{
65-
return;
66-
}
67-
68-
writer.WriteStartObject();
6963

70-
foreach (var securitySchemeAndScopesValuePair in validPairs)
64+
foreach (var securitySchemeAndScopesValuePair in this.Where(static p => p.Key?.Target is not null))
7165
{
7266
var securityScheme = securitySchemeAndScopesValuePair.Key;
7367
var scopes = securitySchemeAndScopesValuePair.Value;

0 commit comments

Comments
 (0)