Ignore mailto links in linkchecker

This commit is contained in:
Jethro Beekman 2022-08-29 14:41:37 +02:00
parent 983f4daddf
commit 8abe7cbf35

View file

@ -215,6 +215,7 @@ impl Checker {
|| url.starts_with("ftp:")
|| url.starts_with("irc:")
|| url.starts_with("data:")
|| url.starts_with("mailto:")
{
report.links_ignored_external += 1;
return;