Skip to content

Commit

Permalink
Merge pull request #112 from n8rzz/bugfix/ATC-108
Browse files Browse the repository at this point in the history
bugfix/ATC-108
  • Loading branch information
n8rzz authored Nov 17, 2016
2 parents 1815351 + 6bec56c commit 2b8d54e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,9 @@ export default class AircraftFlightManagementSystem {
return null;
}

return `${this.following.star}.${window.airportController.airport_get().icao}`;
const { icao } = window.airportController.airport_get();

return `${this.following.star}.${icao.toUpperCase()}`;
}

/**
Expand Down

0 comments on commit 2b8d54e

Please sign in to comment.