mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-02 06:30:08 -05:00
Merge pull request #376 from bluewave-labs/fix/ping-url-creation
Fix/ping url creation, resolves #367
This commit is contained in:
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user