This commit is contained in:
821938089
2022-07-28 09:06:41 +08:00
parent 222c26046c
commit b7bd64b266
2 changed files with 3 additions and 2 deletions

View File

@@ -30,7 +30,8 @@ import kotlinx.coroutines.withContext
class ReadRecordActivity : BaseActivity<ActivityReadRecordBinding>() {
private val adapter by lazy { RecordAdapter(this) }
private var sortMode = LocalConfig.getInt("readRecordSort")
private var sortMode
get() = LocalConfig.getInt("readRecordSort")
set(value) {
LocalConfig.putInt("readRecordSort", value)
}

View File

@@ -122,7 +122,7 @@ class TextPageFactory(dataSource: DataSource) : PageFactory<TextPage>(dataSource
?: TextPage(title = nc.title).format()
}
return@with nc.getPage(1)?.removePageAloudSpan()
?: TextPage(title = nc.title).format()
?: TextPage(text = "继续滑动以加载下一章…").format()
}
}