We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2bd1c9 commit d32e282Copy full SHA for d32e282
packages/indexer/src/ThingMeta.ts
@@ -175,8 +175,12 @@ function nodesToMetaRecord(
175
replyToAuthorId: Thing.authorId(replyToNode),
176
replyToKind: Thing.kind(replyToNode),
177
kind: Thing.kind(thingNode) || ThingDataNode.kind(thingData),
178
- topic: Thing.topic(thingNode) || ThingDataNode.topic(thingData),
179
- domain: ThingDataNode.domain(thingData),
+ topic: (
+ Thing.topic(thingNode) ||
180
+ ThingDataNode.topic(thingData) ||
181
+ 'whatever'
182
+ ).toLowerCase(),
183
+ domain: (ThingDataNode.domain(thingData) || 'unknown').toLowerCase(),
184
created,
185
updated: countsNode?._?.['>']?.comments || created,
186
counts: {
0 commit comments