diff --git a/contrib/frontends/django/nntpchan/nntpchan/views.py b/contrib/frontends/django/nntpchan/nntpchan/views.py index b9d0854..2414981 100644 --- a/contrib/frontends/django/nntpchan/nntpchan/views.py +++ b/contrib/frontends/django/nntpchan/nntpchan/views.py @@ -80,6 +80,10 @@ def webhook(request): 'name': name, 'subject': msg["Subject"] or '', 'newsgroup': group}, msgid=msgid) + if not created: + post.subject = msg["Subject"] or '' + post.name = name + post.posted = posted m = '' for part in msg.walk():