Fix: use Optional chaining

This commit is contained in:
Nelson Chan
2021-07-22 16:13:58 +08:00
parent 96c60dd94a
commit f20ab4b0e3
2 changed files with 2 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ class Monitor extends BeanModel {
bean.ping = dayjs().valueOf() - startTime;
// Check certificate if https is used
if (this.getUrl().protocol === "https:") {
if (this.getUrl()?.protocol === "https:") {
await this.updateTlsInfo(checkCertificate(res));
}