From 0122f0b1d162620fdbdb93fd702001c27a7c95f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Wed, 24 Jan 2018 15:51:54 +0100 Subject: [PATCH] fix talk acceptation confirmation Send mail notification to speakers instead of commenting the talk as it was before this commit. --- cfp/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfp/views.py b/cfp/views.py index 40e852c..9d2cc81 100644 --- a/cfp/views.py +++ b/cfp/views.py @@ -827,7 +827,7 @@ def talk_decide(request, talk_id, accept): if m: for participant in talk.speakers.all(): send_message( - thread=talk.conversation, + thread=participant.conversation, author=request.conference, subject=_("[%(conference)s] Your talk '%(talk)s' have been %(action)s") % { 'conference': request.conference,