From ea038b698e94dbda11d2eb73c986a341a7c8deea Mon Sep 17 00:00:00 2001 From: Nicholas Pease Date: Wed, 2 Aug 2023 12:25:10 -0900 Subject: [PATCH] Add New Meteor M2-3 Satellite to Track List --- satpredictionbot.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/satpredictionbot.js b/satpredictionbot.js index c99dbcd..d0f6647 100644 --- a/satpredictionbot.js +++ b/satpredictionbot.js @@ -54,20 +54,23 @@ function createSection(json) { getSatelliteInfo("28654"), getSatelliteInfo("33591"), getSatelliteInfo("40069"), - getSatelliteInfo("25544") + getSatelliteInfo("25544"), + getSatelliteInfo("57166") ]); let NOAA15 = response[0] let NOAA18 = response[1] let NOAA19 = response[2] let METEORM2 = response[3] let ISS = response[4] + let METEORM23 = response[5] N15HTML = createSection(NOAA15) N18HTML = createSection(NOAA18) N19HTML = createSection(NOAA19) METHTML = createSection(METEORM2) ISSHTML = createSection(ISS) - var messagehtml = headerhtml + N15HTML + N18HTML + N19HTML + METHTML + ISSHTML + footerhtml + MET23HTML = createSection(METEORM23) + var messagehtml = headerhtml + N15HTML + N18HTML + N19HTML + METHTML + MET23HTML + ISSHTML + footerhtml var margins = { top: "50", bottom: "50",