Fix aircraft backfill

This commit is contained in:
2026-06-27 16:32:27 -04:00
parent 8364918a0c
commit 570ed1e749

View File

@@ -291,7 +291,8 @@ export async function enrichAircraft(a) {
}); });
} }
return { icao, ...a, ...merged, type: classifyAircraft(result) }; const m = { icao, ...a, ...merged };
return {...m, type: classifyAircraft(m) }
} }
export async function getADSB() { export async function getADSB() {