diff --git a/db/src/main/java/com/readrops/db/dao/newdao/NewFeedDao.kt b/db/src/main/java/com/readrops/db/dao/newdao/NewFeedDao.kt index 1bd73f74..49dd9aa3 100644 --- a/db/src/main/java/com/readrops/db/dao/newdao/NewFeedDao.kt +++ b/db/src/main/java/com/readrops/db/dao/newdao/NewFeedDao.kt @@ -58,7 +58,7 @@ abstract class NewFeedDao : NewBaseDao { * @return the list of the inserted feeds ids */ @Transaction - suspend fun upsertFeeds(feeds: List, account: Account): List { + open suspend fun upsertFeeds(feeds: List, account: Account): List { val localFeedIds = selectFeedRemoteIds(account.id) val feedsToInsert = feeds.filter { feed -> localFeedIds.none { localFeedId -> feed.remoteId == localFeedId } }