Fix CI build

This commit is contained in:
Shinokuni 2024-05-04 19:41:42 +02:00
parent 8071f0b477
commit 0d69cfd66d

View File

@ -58,7 +58,7 @@ abstract class NewFeedDao : NewBaseDao<Feed> {
* @return the list of the inserted feeds ids
*/
@Transaction
suspend fun upsertFeeds(feeds: List<Feed>, account: Account): List<Long> {
open suspend fun upsertFeeds(feeds: List<Feed>, account: Account): List<Long> {
val localFeedIds = selectFeedRemoteIds(account.id)
val feedsToInsert = feeds.filter { feed -> localFeedIds.none { localFeedId -> feed.remoteId == localFeedId } }