Skip to content

Commit 71b6f79

Browse files
acoumbAndyButland
andauthored
Update src/Umbraco.Cms.Integrations.Search.Algolia/Extensions/ConverterExtensions.cs
Co-authored-by: Andy Butland <[email protected]>
1 parent ae34b40 commit 71b6f79

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Umbraco.Cms.Integrations.Search.Algolia/Extensions/ConverterExtensions.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ public static bool TryGetPropertyIndexValue(this IProperty property, out string
1313
{
1414
success = false;
1515
}
16-
else value = property.GetValue().ToString();
16+
else
17+
{
18+
value = property.GetValue().ToString();
19+
}
1720

1821
return success;
1922
}

0 commit comments

Comments
 (0)