1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-07 08:10:23 +08:00

2.0.beta9

1. api改为云函数反代
2. 记录漫画与章节的阅读进度
3. 详情页显示章节
4. 修复流量警告不再提醒无效
This commit is contained in:
fumiama
2022-01-19 21:29:35 +08:00
parent 683c4eda8c
commit aa1fc1ddbc

View File

@@ -280,11 +280,13 @@ class BookHandler(that: WeakReference<BookFragment>, private val path: String)
}
private fun loadVolume(name: String, path: String, nav: Int){
Log.d("MyBH", "start to load chapter")
val bundle = Bundle()
bundle.putString("name", name)
bundle.putString("path", path)
that?.rootView?.let { Navigation.findNavController(it).navigate(nav, bundle) }
if(complete) {
Log.d("MyBH", "start to load chapter")
val bundle = Bundle()
bundle.putString("name", name)
bundle.putString("path", path)
that?.rootView?.let { Navigation.findNavController(it).navigate(nav, bundle) }
}
}
private fun initComicData() {