Skip to content

Commit

Permalink
fix: fixed issues for encryption configuration on android platform
Browse files Browse the repository at this point in the history
  • Loading branch information
Desu Sai Venkat committed Aug 29, 2023
1 parent 50ce529 commit 8dfabc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public RudderConfig getRudderConfig(Map<String, Object> configMap) {
Boolean enabled = (Boolean) dbEncryptionMap.get("enabled");
String encryptionKey = (String) dbEncryptionMap.get("key");
if(enabled && encryptionKey!=null && encryptionKey.length() > 0) {
builder.withDBEncryption(RudderConfig.DBEncryption(enabled, encryptionKey));
builder.withDbEncryption(new RudderConfig.DBEncryption(enabled, encryptionKey));
}
}

Expand Down

0 comments on commit 8dfabc7

Please sign in to comment.