Skip to content

Commit 18cc85b

Browse files
committed
Fixes System.MissingMethodException for SmartStore.Core.Search.Facets.FacetGroup (OutputCache > MegaSearchPlusController.FacetGroup)
1 parent 90605a8 commit 18cc85b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/Libraries/SmartStore.Core/Search/Facets/FacetGroup.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ public class FacetGroup
2525
private readonly Dictionary<string, Facet> _facets;
2626
private FacetGroupKind? _kind;
2727

28+
public FacetGroup()
29+
: this (string.Empty, string.Empty, false, 0, Enumerable.Empty<Facet>())
30+
{
31+
}
32+
2833
public FacetGroup(
2934
string key,
3035
string label,

0 commit comments

Comments
 (0)