We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c9086a commit 7baf313Copy full SHA for 7baf313
app/src/main/java/me/teble/xposed/autodaily/hook/function/impl/FavoriteManager.kt
@@ -107,7 +107,7 @@ open class FavoriteManager : BaseFunction(
107
return fromServiceMsg.isSuccess
108
}
109
LogUtil.i("执行点赞 $targetUin count: $count 超时")
110
- return false
+ throw RuntimeException("执行点赞 $targetUin count: $count 超时")
111
112
113
open fun syncGetVoterList(page: Int, pageSize: Int): List<VoterInfo>? {
@@ -137,8 +137,8 @@ open class FavoriteManager : BaseFunction(
137
138
139
140
- LogUtil.i("获取点赞列表超时")
141
- return null
+ LogUtil.w("获取点赞列表超时")
+ throw RuntimeException("获取点赞列表超时")
142
143
144
open fun getAllYesterdayVoter(maxPage: Int): List<VoterInfo> {
0 commit comments