style: reformat code
This commit is contained in:
parent
d40743d5ff
commit
6b29a810ba
@ -133,7 +133,8 @@ class FeverRssService @Inject constructor(
|
|||||||
* 3. Fetch the Fever articles
|
* 3. Fetch the Fever articles
|
||||||
* 4. Synchronize read/unread and starred/un-starred items
|
* 4. Synchronize read/unread and starred/un-starred items
|
||||||
*/
|
*/
|
||||||
override suspend fun sync(coroutineWorker: CoroutineWorker): ListenableWorker.Result = supervisorScope {
|
override suspend fun sync(coroutineWorker: CoroutineWorker): ListenableWorker.Result =
|
||||||
|
supervisorScope {
|
||||||
coroutineWorker.setProgress(SyncWorker.setIsSyncing(true))
|
coroutineWorker.setProgress(SyncWorker.setIsSyncing(true))
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -165,7 +166,8 @@ class FeverRssService @Inject constructor(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Fetch the Fever favicons
|
// Fetch the Fever favicons
|
||||||
val faviconsById = feverAPI.getFavicons().favicons?.associateBy { it.id } ?: emptyMap()
|
val faviconsById =
|
||||||
|
feverAPI.getFavicons().favicons?.associateBy { it.id } ?: emptyMap()
|
||||||
feedDao.insertOrUpdate(
|
feedDao.insertOrUpdate(
|
||||||
feedsBody.feeds?.map {
|
feedsBody.feeds?.map {
|
||||||
Feed(
|
Feed(
|
||||||
@ -201,7 +203,8 @@ class FeverRssService @Inject constructor(
|
|||||||
title = it.title.decodeHTML() ?: context.getString(R.string.empty),
|
title = it.title.decodeHTML() ?: context.getString(R.string.empty),
|
||||||
author = it.author,
|
author = it.author,
|
||||||
rawDescription = it.html ?: "",
|
rawDescription = it.html ?: "",
|
||||||
shortDescription = Readability.parseToText(it.html, it.url).take(110),
|
shortDescription = Readability.parseToText(it.html, it.url)
|
||||||
|
.take(110),
|
||||||
fullContent = it.html,
|
fullContent = it.html,
|
||||||
img = rssHelper.findImg(it.html ?: ""),
|
img = rssHelper.findImg(it.html ?: ""),
|
||||||
link = it.url ?: "",
|
link = it.url ?: "",
|
||||||
@ -234,7 +237,11 @@ class FeverRssService @Inject constructor(
|
|||||||
articleDao.markAsReadByArticleId(accountId, meta.id, shouldBeUnread ?: true)
|
articleDao.markAsReadByArticleId(accountId, meta.id, shouldBeUnread ?: true)
|
||||||
}
|
}
|
||||||
if (meta.isStarred != shouldBeStarred) {
|
if (meta.isStarred != shouldBeStarred) {
|
||||||
articleDao.markAsStarredByArticleId(accountId, meta.id, shouldBeStarred ?: false)
|
articleDao.markAsStarredByArticleId(
|
||||||
|
accountId,
|
||||||
|
meta.id,
|
||||||
|
shouldBeStarred ?: false
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user