24h forecasting
This commit is contained in:
@@ -10,8 +10,7 @@ import {spec} from './spec.mjs';
|
||||
import {existsSync} from 'fs';
|
||||
import {getAirTraffic, getAirTrafficHistory, getShapes} from './airtraffic.mjs';
|
||||
import {getWeatherCondition} from './openweather.mjs';
|
||||
import {refreshForecast} from './forecast.mjs';
|
||||
import {cache} from 'express/lib/application.js';
|
||||
import {lastForecast, refreshForecast} from './forecast.mjs';
|
||||
|
||||
const app = express();
|
||||
const DIR = dirname(fileURLToPath(import.meta.url));
|
||||
@@ -186,7 +185,7 @@ let ready = false
|
||||
while (!ready) {
|
||||
try {
|
||||
await refreshForecast()
|
||||
ready = cache.slots.length > 0
|
||||
ready = lastForecast.slots.length > 0
|
||||
} catch {}
|
||||
if (!ready) await new Promise(r => setTimeout(r, 5000))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user