@ URL was broken since 1.3.7 doh!

This commit is contained in:
Godzil 2018-08-05 10:46:27 +01:00
parent 1b0f53a88c
commit ce5038cf08

View File

@ -252,7 +252,15 @@ function checkURL(address: string): boolean
{
return true;
}
if (address.startsWith('http:\/\/'))
if (address.startsWith('https:\/\/'))
{
return true;
}
if (address.startsWith('@http:\/\/'))
{
return true;
}
if (address.startsWith('@https:\/\/'))
{
return true;
}