diff options
author | Dan Finlay <dan@danfinlay.com> | 2018-11-29 00:35:03 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2018-11-29 00:35:03 +0800 |
commit | ac1b756bd01324682114dd96bfd0c1d4195225a8 (patch) | |
tree | 5d8b396e65e2845776e38669b05c94436b0f3f49 | |
parent | 486f9931c469ac1829b6f433ad3ebdc11821df22 (diff) | |
download | tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar.gz tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.tar.zst tangerine-wallet-browser-ac1b756bd01324682114dd96bfd0c1d4195225a8.zip |
Soften accusatory language on phishing warning
We don't always know for sure that sites marked as phishers are
defiitely scams, and so we should avoid language that makes concrete
accusations.
-rw-r--r-- | app/scripts/phishing-detect.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/phishing-detect.js b/app/scripts/phishing-detect.js index 0889c831e..03fa83994 100644 --- a/app/scripts/phishing-detect.js +++ b/app/scripts/phishing-detect.js @@ -1,7 +1,7 @@ window.onload = function () { if (window.location.pathname === '/phishing.html') { const {hostname} = parseHash() - document.getElementById('esdbLink').innerHTML = '<b>To read more about this scam, navigate to: <a href="https://etherscamdb.info/domain/' + hostname + '"> https://etherscamdb.info/domain/' + hostname + '</a></b>' + document.getElementById('esdbLink').innerHTML = '<b>To read more about this site and why it was blocked, navigate to: <a href="https://etherscamdb.info/domain/' + hostname + '"> https://etherscamdb.info/domain/' + hostname + '</a></b>' } } |