Merge branch 'develop' into fix/install-ping

This commit is contained in:
Alex Holliday
2025-09-08 07:10:15 -07:00
2 changed files with 4 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ import { execSync } from "child_process";
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), "");
let version = "3.1.5";
let version = "3.1.6";
return {
base: "/",

View File

@@ -75,6 +75,9 @@ class NetworkService {
const { response, responseTime, error } = await this.timeRequest(() => this.ping.promise.probe(monitor.url));
if (!response) {
if (error) {
throw error;
}
throw new Error("Ping failed - no result returned");
}