1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Fix typo in Message.reply

This commit is contained in:
Adam Dobrawy 2015-03-18 10:11:34 +01:00
parent d6c20d1b0a
commit 2b40c9efd0

View file

@ -511,7 +511,7 @@ class Message(models.Model):
pre-set it.
"""
if not self.from_email:
if not message.from_email:
if self.mailbox.from_email:
message.from_email = self.mailbox.from_email
else: