prevent to show "New Update" when the Docker image is not ready yet

pull/842/head
Louis Lam 3 years ago
parent 1dbf1c3dea
commit e7104737e7

@ -9,18 +9,17 @@ let interval;
exports.startInterval = () => { exports.startInterval = () => {
let check = async () => { let check = async () => {
try { try {
const res = await axios.get("https://raw.githubusercontent.com/louislam/uptime-kuma/master/package.json"); const res = await axios.get("https://uptime.kuma.pet/version");
if (typeof res.data === "string") {
res.data = JSON.parse(res.data);
}
// For debug // For debug
if (process.env.TEST_CHECK_VERSION === "1") { if (process.env.TEST_CHECK_VERSION === "1") {
res.data.version = "1000.0.0"; res.data.slow = "1000.0.0";
}
if (res.data.slow) {
exports.latestVersion = res.data.slow;
} }
exports.latestVersion = res.data.version;
} catch (_) { } } catch (_) { }
}; };

Loading…
Cancel
Save