diff --git a/uYouPlus.xm b/uYouPlus.xm index e7091d0..e56c8ba 100644 --- a/uYouPlus.xm +++ b/uYouPlus.xm @@ -29,8 +29,11 @@ NSBundle *uYouPlusBundle() { NSString *tweakBundlePath = [[NSBundle mainBundle] pathForResource:@"uYouPlus" ofType:@"bundle"]; if (tweakBundlePath) bundle = [NSBundle bundleWithPath:tweakBundlePath]; - else + else { bundle = [NSBundle bundleWithPath:@"/Library/Application Support/uYouPlus.bundle"]; + if (!bundle) + bundle = [NSBundle bundleWithPath:@"/var/jb/Library/Application Support/uYouPlus.bundle"]; + } }); return bundle; }