This commit is contained in:
lunaticbum 2025-08-17 16:19:58 +09:00
parent 5c7325843c
commit 44ac92ca17

View File

@ -682,7 +682,7 @@ internal class RssHome : Fragment() {
Blog.LOGE("updateQuery >>> ${q.description()}") Blog.LOGE("updateQuery >>> ${q.description()}")
infosJob?.cancel() infosJob?.cancel()
commandHandler.removeCallbacks(infoUpdate) commandHandler.removeCallbacks(infoUpdate)
mLastedQuery = q.sort("pubDate ", Sort.DESCENDING).limit(300).distinct("originPage", "title") mLastedQuery = q.query("hide != $0", true).sort("pubDate ", Sort.DESCENDING).limit(300).distinct("originPage", "title")
mRssDataResult = mLastedQuery?.find() mRssDataResult = mLastedQuery?.find()
mRssDataResult?.asFlow()?.let { flow -> mRssDataResult?.asFlow()?.let { flow ->
infosJob = CoroutineScope(Dispatchers.IO).launch { infosJob = CoroutineScope(Dispatchers.IO).launch {