Fix dedicated line request bug

This commit is contained in:
hongqiaowei
2021-11-29 18:00:34 +08:00
parent 3214ccad6b
commit 3272970ad5

View File

@@ -135,7 +135,15 @@ public class ServiceConfig {
result.clear();
clear = true;
}*/
result.add(ac);
if (dedicatedLineRequest) {
if (ac.dedicatedLine) {
result.add(ac);
}
} else {
if (!ac.dedicatedLine) {
result.add(ac);
}
}
}
}
/*if (clear && !result.isEmpty()) {