mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-05-19 05:45:01 -04:00
Small bootstrap fix
This commit is contained in:
@@ -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<_>>()
|
||||
|
||||
Reference in New Issue
Block a user