vendrhub / vendr-demo-store

Demo store for Vendr, the eCommerce solution for Umbraco v8+
MIT License
25 stars 15 forks source link

Fix indexing value of searchPath in Examine #11

Closed bjarnef closed 4 years ago

bjarnef commented 4 years ago

Fixes indexing value in searchPath field to be a path separated with spaces instead of returning a collection because e.ValueSet.Values["path"] returns List<object> which is the same has e.ValueSet.GetValues("path")

There is also a .GetValue() method which returns an object. Seems to do the same as e.ValueSet.Values["path"][0].