mirror of https://github.com/BOINC/boinc.git
Allow machines that don't report android version to get work if
min_android_version in plan class <= 0
This commit is contained in:
parent
b9cd078dd7
commit
83e832c328
|
@ -268,7 +268,7 @@ bool PLAN_CLASS_SPEC::check(SCHEDULER_REQUEST& sreq, HOST_USAGE& hu) {
|
||||||
sreq.host.os_version
|
sreq.host.os_version
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return false;
|
if (min_android_version>0) return false;
|
||||||
}
|
}
|
||||||
if (min_android_version && (host_android_version < min_android_version)) {
|
if (min_android_version && (host_android_version < min_android_version)) {
|
||||||
if (config.debug_version_select) {
|
if (config.debug_version_select) {
|
||||||
|
|
Loading…
Reference in New Issue