We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36bfdb6 commit 1f640e9Copy full SHA for 1f640e9
1 file changed
libsql/src/database.rs
@@ -393,6 +393,7 @@ cfg_replication! {
393
DbType::Sync { db, encryption_config: _ } => db.sync().await,
394
#[cfg(feature = "sync")]
395
DbType::Offline { db, remote_writes: false, .. } => db.sync_offline().await,
396
+ #[cfg(feature = "sync")]
397
DbType::Offline { db, remote_writes: true, .. } => {
398
let mut sync_ctx = db.sync_ctx.as_ref().unwrap().lock().await;
399
crate::sync::bootstrap_db(&mut sync_ctx).await?;
0 commit comments