rovo89 / XposedBridge

The Java part of the Xposed framework.
3.89k stars 1.1k forks source link

Hook callback not called if hooked method is called from an other hook #266

Open MPeti1 opened 5 years ago

MPeti1 commented 5 years ago

If I call firstMethod() from secondMethod()'s callback, then firstMethod()'s callback doesn't get called. But then what is the purpose of XposedBridge.invokeOriginalMethod()? I mean, that should only happen if I call firstMethod() through XposedBridge.invokeOriginalMethod(). Is this a bug, or do I misunderstand something?