Merge pull request #2102 from 821938089/little-fix

优化
This commit is contained in:
kunfei 2022-07-28 11:03:50 +08:00 committed by GitHub
commit dd48cb45bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()
}
}