fix(core): update

This commit is contained in:
2021-10-19 03:09:50 +02:00
parent 52af1d5188
commit 9eb232da39
8 changed files with 18637 additions and 3057 deletions

View File

@@ -15,7 +15,7 @@ export class RegistryStorage {
}
getRegistryByUrl(registryUrlArg: string) {
return this.objectMap.find((registryArg) => {
return this.objectMap.findSync((registryArg) => {
return registryArg.registryUrl === registryUrlArg;
});
}