Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
Fix throwables
Browse files Browse the repository at this point in the history
Resf #1398
  • Loading branch information
M66B committed Feb 21, 2014
1 parent 8e67067 commit d8a4d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/biz/bokhorst/xprivacy/XPrivacy.java
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
if (xparam.hasResult())
param.setResult(xparam.getResult());
if (xparam.hasThrowable())
param.setResult(xparam.getThrowable());
param.setThrowable(xparam.getThrowable());
} catch (Throwable ex) {
Util.bug(null, ex);
}
Expand Down

0 comments on commit d8a4d17

Please sign in to comment.