diff options
Diffstat (limited to 'content')
| -rw-r--r-- | content/contactFinder.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/content/contactFinder.js b/content/contactFinder.js index fb0ec27..46e6595 100644 --- a/content/contactFinder.js +++ b/content/contactFinder.js @@ -239,7 +239,7 @@ function main() {        for (const recipient of emails.slice(0, 10)) {          const a = contentDoc.createElement("a");          // TODO: fix prefs -        a.href = `mailto:${recipient}?subject${encodeURIComponent(prefs["pref_subject"]) +        a.href = `mailto:${recipient}?subject=${encodeURIComponent(prefs["pref_subject"])            }&body=${encodeURIComponent(prefs["pref_body"])            }`;          a.textContent = recipient; | 
