Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nep-Timeline committed Jul 10, 2023
1 parent e07a49d commit d83800d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdk 26
targetSdk 33
versionCode 2
versionName "2.0"
versionName "2.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
if (item.getClass().equals(TL_updateDeleteMessages))
AntiRecall.insertNeedProcessDeletedMessage(new TLRPC.TL_updateDeleteMessages(item).getMessages());

if (HookInit.DEBUG_MODE)
if (HookInit.DEBUG_MODE && (item.getClass().equals(TL_updateDeleteMessages) || item.getClass().equals(TL_updateDeleteChannelMessages)))
Utils.log("Protected message! event: " + item.getClass());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
import de.robv.android.xposed.callbacks.XC_LoadPackage;
import nep.timeline.re_telegram.ClientChecker;
import nep.timeline.re_telegram.Utils;
import nep.timeline.re_telegram.obfuscate.resolves.Nekogram;
import nep.timeline.re_telegram.obfuscate.resolves.Yukigram;
import nep.timeline.re_telegram.obfuscate.resolves.*;

public class AutomationResolver {
public static String resolve(String className, final XC_LoadPackage.LoadPackageParam lpparam)
Expand Down

0 comments on commit d83800d

Please sign in to comment.