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
{{ message }}
This repository was archived by the owner on Dec 6, 2023. It is now read-only.
Status.getStatus() seems to be returning -1 all the time
Even though the actual Eskom API is up and running.
Piece of code below is swallowing the exception. I was gonna do a PR but my Typescript is not so good
try {
const resp = await this.get('/GetStatus');
return resp.data;
} catch (e) {
return LoadsheddingStageRaw.UNKNOWN;
}