Merge pull request #376 from bluewave-labs/fix/ping-url-creation

Fix/ping url creation, resolves #367
This commit is contained in:
Alexander Holliday
2024-07-18 15:06:17 -07:00
committed by GitHub
@@ -85,7 +85,10 @@ const CreateMonitor = () => {
//obj to submit
let monitor = {
...generalSettings,
url: "https://" + generalSettings.url,
url:
checks.type === "http"
? "https://" + generalSettings.url
: generalSettings.url,
...checks,
};