Skip to content

Commit

Permalink
fix: TroopMemberLeaveGreyTip
Browse files Browse the repository at this point in the history
  • Loading branch information
lliioollcn committed Dec 21, 2024
1 parent 00c43df commit db601db
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ import io.github.qauxv.util.Initiator._TroopChatPie
import io.github.qauxv.util.Initiator.getHostClassLoader
import io.github.qauxv.util.Initiator.load
import io.github.qauxv.util.Log
import io.github.qauxv.util.QQVersion
import io.github.qauxv.util.requireMinQQVersion
import me.ketal.data.ConfigData
import mqq.app.AppRuntime

Expand Down Expand Up @@ -370,7 +372,7 @@ data object CSystemMessageProcessor : DexKitTarget.UsingStr() {
data object COnlinePushPbPushTransMsg : DexKitTarget.UsingStr() {
override val declaringClass = "com.tencent.mobileqq.app.handler.receivesuccess.OnlinePushPbPushTransMsg"
override val traitString = arrayOf("PbPushTransMsg muteGeneralFlag:")
override val filter = DexKitFilter.strInClsName("/receivesuccess/")
override val filter = if (requireMinQQVersion(QQVersion.QQ_9_1_30)) DexKitFilter.allowAll else DexKitFilter.strInClsName("/receivesuccess/")
}

data object CFrameControllerInjectImpl : DexKitTarget.UsingStr() {
Expand Down

0 comments on commit db601db

Please sign in to comment.