Skip to content

Commit

Permalink
Fixed bug from 4.2 multiple user support
Browse files Browse the repository at this point in the history
  • Loading branch information
DHuckaby committed Nov 13, 2012
1 parent 5a7faf1 commit 7cae192
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ private static File getCacheDirectory(Context context) {
break;
case INTERNAL:
default:
directory = new File(Environment.getDataDirectory().getAbsolutePath() + "/data/" + context.getPackageName() + "/cache");
directory = context.getCacheDir();
break;
}
return directory;
Expand Down

0 comments on commit 7cae192

Please sign in to comment.