Skip to content

Commit

Permalink
keep mail: as before
Browse files Browse the repository at this point in the history
  • Loading branch information
dadokkio committed May 12, 2020
1 parent 5a1c550 commit ff97a4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion responders/Mailer/mailer.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run(self):
tags = self.get_param(
"data.tags", None, "recipient address not found in tags"
)
mail_tags = [t[7:] for t in tags if t.startswith("mailto:")]
mail_tags = [t[5:] for t in tags if t.startswith("mail:")]
if mail_tags:
mail_to = mail_tags.pop()
else:
Expand Down

0 comments on commit ff97a4a

Please sign in to comment.