Skip to content

Commit 749d253

Browse files
Fix sonar issues
1 parent eddb149 commit 749d253

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/Conversion/Serializers/Forms/FormContent.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private void SetValue(NameValueCollection query, string field, object? value, Ty
7575
{
7676
var formatted = Formatters.Write(value, type);
7777

78-
if (value is not null)
78+
if (formatted is not null)
7979
{
8080
query[field] = formatted;
8181
}

0 commit comments

Comments
 (0)