Commit 7132c3186ddf648d525fe929c523dbcae4e131b2

Authored by Sergio Oliveira
1 parent 1ce3e428

Adding in_reply_to to request data

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
src/super_archives/views.py
... ... @@ -74,6 +74,7 @@ class ThreadView(View):
74 74 raise http.Http404
75 75  
76 76 data = {
  77 + 'in_reply_to': thread.message_set.last().message_id,
77 78 'email_from': request.user.email,
78 79 'name_from': request.user.get_full_name(),
79 80 'subject': thread.message_set.first().subject_clean,
... ...