Skip to content

Commit ae34b40

Browse files
committed
Fix NULL reference
1 parent 9fd5a65 commit ae34b40

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ public static bool TryGetPropertyIndexValue(this IProperty property, out string
1313
{
1414
success = false;
1515
}
16-
17-
value = property.GetValue().ToString();
16+
else value = property.GetValue().ToString();
1817

1918
return success;
2019
}

src/Umbraco.Cms.Integrations.Search.Algolia/Umbraco.Cms.Integrations.Search.Algolia.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageIconUrl></PackageIconUrl>
1414
<PackageProjectUrl>https://github.com/umbraco/Umbraco.Cms.Integrations/tree/main/src/Umbraco.Cms.Integrations.Search.Algolia</PackageProjectUrl>
1515
<RepositoryUrl>https://github.com/umbraco/Umbraco.Cms.Integrations</RepositoryUrl>
16-
<Version>2.2.1</Version>
16+
<Version>2.2.2</Version>
1717
<Authors>Umbraco HQ</Authors>
1818
<Company>Umbraco</Company>
1919
<PackageTags>Umbraco;Umbraco-Marketplace</PackageTags>

0 commit comments

Comments
 (0)