1
0
Fork 0

don't fail

This commit is contained in:
jsteemann 2016-05-03 00:44:55 +02:00
parent db9e3d1360
commit 065d1bfa9a
1 changed files with 3 additions and 1 deletions

View File

@ -1061,7 +1061,9 @@ function _install(serviceInfo, mount, options, runSetup) {
},
action() {
var definition = collection.firstExample({mount: mount});
collection.remove(definition._key);
if (definition !== null) {
collection.remove(definition._key);
}
}
});
}