Skip to content

Commit

Permalink
feat: 解决 rebuild 报错问题
Browse files Browse the repository at this point in the history
  • Loading branch information
fanqie committed Jul 12, 2024
1 parent db9a341 commit 0043aac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Demo/app2/src/main/java/com/xiaojinzi/app2/App2.kt
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ class App2 : Application() {
)
}

override fun onCancel(originalRequest: RouterRequest) {
override fun onCancel(originalRequest: RouterRequest?) {
LogSupport.d(
tag = "RouterListener",
content = "onCancel, url = ${originalRequest.uri}"
content = "onCancel, url = ${originalRequest?.uri}"
)
}
}
Expand Down

0 comments on commit 0043aac

Please sign in to comment.