Mark links with a password as "sneaky"

This commit is contained in:
Evan Hahn 2021-04-28 15:19:32 -05:00 committed by Scott Nonnenberg
parent bf6487c5b9
commit a5fde38c98
2 changed files with 3 additions and 1 deletions

View file

@ -117,7 +117,7 @@ function isLinkSneaky(href) {
}
// Any links which contain auth are considered sneaky
if (url.username) {
if (url.username || url.password) {
return true;
}