Skip to content

Commit

Permalink
Merge pull request #116 from dasevilla/patch-1
Browse files Browse the repository at this point in the history
Fix for bundles not loading from ~/Library
  • Loading branch information
Michael Morris committed Aug 14, 2011
2 parents 6f2387c + 6571aca commit 60f06b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Helpers/NSBundleHelper.m
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ + (void)loadBundlesIntoMemory:(IRCWorld *)world

for (NSString *file in resourceFiles) {
if ([file hasSuffix:@".bundle"]) {
NSString *fullPath = [path_2 stringByAppendingPathComponent:file];
NSString *fullPath = [path_1 stringByAppendingPathComponent:file];

if ([_NSFileManager() fileExistsAtPath:fullPath] == NO) {
fullPath = [path_2 stringByAppendingPathComponent:file];
Expand Down

0 comments on commit 60f06b7

Please sign in to comment.