Skip to content

Commit

Permalink
[Fix]: 电波章节评论回复跳转修复
Browse files Browse the repository at this point in the history
  • Loading branch information
why committed Apr 2, 2024
1 parent cafa687 commit ae9244c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion app/src/main/java/com/xiaoyv/bangumi/helper/RouteHelper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,16 @@ object RouteHelper {
}
// 条目
titleLink.contains(BgmPathType.TYPE_SUBJECT) -> {
jumpMediaDetail(id)
when {
// 章节详情
titleLink.contains(TopicType.TYPE_EP) -> {
jumpTopicDetail(id, TopicType.TYPE_EP, targetComment)
}
// 条目详情
else -> {
jumpMediaDetail(id)
}
}
return true
}
// 小组
Expand Down

0 comments on commit ae9244c

Please sign in to comment.