Skip to content

Commit

Permalink
Small bootstrap fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fogodev committed Oct 22, 2024
1 parent 114d0df commit 2313a7f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion core/src/api/cloud/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,15 @@ pub(crate) fn mount() -> AlphaRouter<Ctx> {
}| {
let node = &node;

async move { initialize_cloud_sync(pub_id, library, node).await }
async move {
match initialize_cloud_sync(pub_id, library, node).await {
// If we don't have this library locally, we didn't joined this group yet
Ok(()) | Err(LibraryManagerError::LibraryNotFound) => {
Ok(())
}
Err(e) => Err(e),
}
}
},
)
.collect::<Vec<_>>()
Expand Down

0 comments on commit 2313a7f

Please sign in to comment.