fix bug where using ontoserver when not appropriate
This commit is contained in:
parent
f74f87c33b
commit
b8a9b94b45
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue