We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4966a commit 4ac3219Copy full SHA for 4ac3219
js/tracker.js
@@ -4113,13 +4113,11 @@ function updateLeaderboardPane(r){
4113
function updateLaunchPredictions(r) {
4114
for (serial in r) {
4115
prediction = r[serial];
4116
- if(prediction.hasOwnProperty("launch_site")) {
4117
- if(vehicles.hasOwnProperty(serial)) {
4118
- vehicle = vehicles[serial];
4119
- if (vehicle.prediction_launch == null) {
4120
- vehicle.prediction_launch = prediction;
4121
- drawLaunchPrediction(serial);
4122
- }
+ if(vehicles.hasOwnProperty(serial)) {
+ vehicle = vehicles[serial];
+ if (vehicle.prediction_launch == null) {
+ vehicle.prediction_launch = prediction;
+ drawLaunchPrediction(serial);
4123
}
4124
4125
0 commit comments