Change-Id: Ia4cc6dd28b85d7a4ce54e66160a2319d11808047
@ -57,7 +57,7 @@ internal class DefaultSearchContentsRepository @Inject constructor(
topicDao.getOneOffTopicEntities().forEach { topicEntity ->
val topicFtsEntities = topicFtsDao.getFtsEntityById(topicEntity.id)
val topicFtsEntities = topicFtsDao.getFtsEntitiesById(topicEntity.id)
val size = topicFtsEntities.size
if (size == 0) {
@ -48,7 +48,7 @@ interface TopicFtsDao {
WHERE topicId = :topicId
""",
)
suspend fun getFtsEntityById(topicId: String): List<TopicFtsEntity>
suspend fun getFtsEntitiesById(topicId: String): List<TopicFtsEntity>
@Query(
"""