Skip to content

Commit

Permalink
Fix Copy rootca at each launch instead of copy this if it not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
DatBewar committed Feb 8, 2017
1 parent 767adf8 commit 798d472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/linphone/LinphoneManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ private void copyAssetsFromPackage() throws IOException {
copyIfNotExist(R.raw.linphonerc_default, mLinphoneConfigFile);
copyFromPackage(R.raw.linphonerc_factory, new File(mLinphoneFactoryConfigFile).getName());
copyIfNotExist(R.raw.lpconfig, mLPConfigXsd);
copyIfNotExist(R.raw.rootca, mLinphoneRootCaFile);
copyFromPackage(R.raw.rootca, mLinphoneRootCaFile);
}

public void copyIfNotExist(int ressourceId, String target) throws IOException {
Expand Down

0 comments on commit 798d472

Please sign in to comment.