diff --git a/pkg/lib/core/smartblock/smartblock.go b/pkg/lib/core/smartblock/smartblock.go index b40ddbb686..632242e26a 100644 --- a/pkg/lib/core/smartblock/smartblock.go +++ b/pkg/lib/core/smartblock/smartblock.go @@ -69,10 +69,9 @@ func (sbt SmartBlockType) IsOneOf(sbts ...SmartBlockType) bool { // Indexable determines if the object of specific type need to be proceeded by the indexer in order to appear in sets func (sbt SmartBlockType) Indexable() (details, outgoingLinks bool) { switch sbt { - case SmartBlockTypeDate, SmartBlockTypeAccountOld, SmartBlockTypeArchive, - SmartBlockTypeHome, SmartBlockTypeNotificationObject, SmartBlockTypeDevicesObject: + case SmartBlockTypeDate, SmartBlockTypeAccountOld, SmartBlockTypeNotificationObject, SmartBlockTypeDevicesObject: return false, false - case SmartBlockTypeWidget: + case SmartBlockTypeWidget, SmartBlockTypeArchive, SmartBlockTypeHome: return true, false default: return true, true