We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0851ef6 commit e7148b5Copy full SHA for e7148b5
src/lib.rs
@@ -258,7 +258,7 @@ impl Database {
258
let encryption_context = libsql::EncryptionContext {
259
key: libsql::EncryptionKey::Base64Encoded(encryption_key),
260
};
261
- builder = builder.remote_encryption(Some(encryption_context));
+ builder = builder.remote_encryption(encryption_context);
262
}
263
rt.block_on(builder.build()).map_err(Error::from)?
264
} else if let Some(options) = &opts {
@@ -298,7 +298,7 @@ impl Database {
298
remote_encryption_key.to_string(),
299
),
300
301
302
303
304
if let Some(period) = options.syncPeriod {
0 commit comments