fix bug where using ontoserver when not appropriate

This commit is contained in:
Grahame Grieve 2024-02-12 16:20:10 +11:00
parent f74f87c33b
commit b8a9b94b45
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ public class TerminologyClientManager {
for (String s : ol.authoritative) {
boolean ok = true;
for (ServerOptionList t : choices) {
if (!t.candidates.contains(s)) {
if (!t.authoritative.contains(s) && !t.candidates.contains(s)) {
ok = false;
}
}