Removing override of OnTransformingIndexValues from DeliveryApiContentIndex

This commit is contained in:
Elitsa
2024-07-08 09:27:36 +03:00
parent ef01c27fad
commit f6deaca452

View File

@@ -134,10 +134,4 @@ public class DeliveryApiContentIndex : UmbracoExamineIndex
return (compositeIdModel.Id?.ToString(CultureInfo.InvariantCulture), compositeIdModel.Culture);
}
protected override void OnTransformingIndexValues(IndexingItemEventArgs e)
{
// UmbracoExamineIndex (base class down the hierarchy) performs some magic transformations here for paths and icons;
// we don't want that for the Delivery API, so we'll have to override this method and simply do nothing.
}
}