Skip to content

Commit

Permalink
[FIX] crm_mail_tracking: error en runbot
Browse files Browse the repository at this point in the history
Ticket: 70925
Al llamar a super de _add_extra_recipients_suggestions contiene un argumento de más (self).

closes #174

Signed-off-by: augusto-weiss <awe@adhoc.com.ar>
  • Loading branch information
pablohmontenegro committed Feb 6, 2024
1 parent 6105a10 commit acded81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crm_mail_tracking/models/mail_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ def _add_extra_recipients_suggestions(self, suggestions, field_mail, reason):
si tiene un email_from y utiliza email_from.lower()
"""
if not (self._name == 'crm.lead' and not self.email_from):
super()._add_extra_recipients_suggestions(self, suggestions, field_mail, reason)
super()._add_extra_recipients_suggestions(suggestions, field_mail, reason)

0 comments on commit acded81

Please sign in to comment.