Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Fix oneui notification (#2902)
Browse files Browse the repository at this point in the history
  • Loading branch information
yujincheng08 committed Dec 29, 2023
1 parent edecd5c commit ab0ee26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion daemon/src/main/java/org/lsposed/lspd/util/FakeContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ public ApplicationInfo getApplicationInfo() {

@Override
public ContentResolver getContentResolver() {
return null;
return new ContentResolver(this) {
};
}

public int getUserId() {
Expand Down

0 comments on commit ab0ee26

Please sign in to comment.