fix dependency autoconfig

This commit is contained in:
Aiden McClelland
2024-07-30 12:08:20 -06:00
parent 89e327383e
commit 7cd3f285ad
2 changed files with 28 additions and 8 deletions

View File

@@ -38,7 +38,7 @@ impl ServiceActorSeed {
)
.await
.with_kind(ErrorKind::Dependency)
.map(|res| res.filter(|c| !c.is_empty()))
.map(|res| res.filter(|c| !c.is_empty() && Some(c) != remote_config.as_ref()))
}
}