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

Commit

Permalink
Fixed incompatibility with Xposed 2.6 beta 1 (2)
Browse files Browse the repository at this point in the history
Refs #1659
  • Loading branch information
M66B committed May 15, 2014
1 parent 2c0b6c7 commit f492c47
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Changelog

**Next release**

* Fixed incompatibility with Xposed 2.6 beta 1 ([issue](/../../issues/1659))

[Open issues](https://github.com/M66B/XPrivacy/issues?state=open)

**Version 2.0.21 STABLE**
Expand Down
1 change: 1 addition & 0 deletions src/biz/bokhorst/xprivacy/XActivityThread.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ private void finish(XParam param) {
if (param.thisObject != null)
try {
Method unschedule = param.thisObject.getClass().getDeclaredMethod("unscheduleGcIdler");
unschedule.setAccessible(true);
unschedule.invoke(param.thisObject);
} catch (Throwable ex) {
Util.bug(this, ex);
Expand Down

0 comments on commit f492c47

Please sign in to comment.