Skip to content

Commit

Permalink
Fix wv asset extraction path
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Aug 25, 2024
1 parent 5eab9e3 commit b668f69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void loadSync(Options options) {
AssetExtractor ae = new AssetExtractor(context.getAssets()).setNoOverwrite();

// @TODO: use asset files without extracting
File wv_data_dir = ae.extract(context.getFilesDir(), "wv/share/wv");
File wv_data_dir = ae.extract(new File(context.getFilesDir(), "wv/share"), "wv");
EnvVar.set("WVDATADIR", wv_data_dir.getAbsolutePath());

final Result result = new Result();
Expand Down

0 comments on commit b668f69

Please sign in to comment.