Merge pull request #370 from rafl/ignore-unknown-osd-items

Ignore unknown OSD items
10.3.x-maintenance
borisbstyle 2017-01-03 09:35:32 +01:00 committed by GitHub
commit c29f1e285e
1 changed files with 1 additions and 1 deletions

View File

@ -523,7 +523,7 @@ OSD.msp = {
}
d.display_items = [];
// start at the offset from the other fields
while (view.offset < view.byteLength) {
while (view.offset < view.byteLength && d.display_items.length < OSD.constants.DISPLAY_FIELDS.length) {
var v = null;
if (semver.gte(CONFIG.flightControllerVersion, "3.0.1")) {
v = view.readU16();