mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
@@ -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)
|
||||
}
|
||||
|
||||
@@ -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()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user