You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log("Failed to fetch Instatus summary",error);
81
+
}else{
82
+
constinstatusData=
83
+
(awaitinstatus.json())asunknownasInstatusSummary;
84
+
85
+
maintenanceData=instatusData.activeMaintenances;
86
+
}
77
87
78
88
if(
79
89
maintenanceData!==undefined&&
80
-
maintenanceData.status==="INPROGRESS"
90
+
maintenanceData.length>0&&
91
+
maintenanceData[0]!==undefined&&
92
+
maintenanceData[0].status==="INPROGRESS"
81
93
){
82
94
Notifications.addPSA(
83
-
`Server is currently offline for scheduled maintenance. <a target= '_blank' href='${maintenanceData.url}'>Check the status page</a> for more info.`,
95
+
`Server is currently offline for scheduled maintenance. <a target= '_blank' href='${maintenanceData[0].url}'>Check the status page</a> for more info.`,
0 commit comments