This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

use citoid metadata whenever types mismatch

+2 -2
+2 -2
src/modules/cards/infrastructure/CompositeMetadataService.ts
··· 126 126 return iframelyMetadata; 127 127 } 128 128 129 - // If both return the same type or different specific types, use default preference 130 - if (this.config.defaultService === DefaultServicePreference.CITOID) { 129 + // If both return different types, prefer Citoid (for scholarly content) 130 + if (citoidType !== iframelyType) { 131 131 return citoidMetadata; 132 132 } 133 133