feature vtx got removed with 1.35 and is active by default

10.3.x-maintenance
Steffen Windoffer 2017-11-11 13:44:10 +01:00
parent d5450de2e3
commit c1827e0968
1 changed files with 5 additions and 1 deletions

View File

@ -73,8 +73,12 @@ var Features = function (config) {
if (semver.gte(CONFIG.apiVersion, "1.20.0")) {
features.push(
{bit: 18, group: 'other', name: 'OSD'},
{bit: 24, group: 'other', name: 'VTX'}
);
if (!semver.gte(CONFIG.apiVersion, "1.35.0")) {
features.push(
{bit: 24, group: 'other', name: 'VTX'}
)
}
}
if (semver.gte(CONFIG.apiVersion, "1.31.0")) {