Skip to content

Commit 7c85351

Browse files
committed
Closes #447
1 parent 0215d03 commit 7c85351

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22

3-
## [2.10.1] - Unreleased
3+
## [2.10.2] -
4+
5+
* (todo) Add reminder about template loading order to the documentation.
6+
* Fix template name `comment_tree.html` in doc strings and the documentation.
7+
* Fix variable template name in `form.html`, in custom example site.
8+
* Remove duplicated code.
9+
10+
## [2.10.1] - 2024-11-28
411

512
* Updated French translation.
613
* Updated battery of tests to check compatibility with Django 5.1.

django_comments_xtd/views.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -269,12 +269,6 @@ def feed_followers(gen):
269269
except NotSupportedError:
270270
feed_followers(previous_comments)
271271

272-
for instance in previous_comments:
273-
followers[instance.user_email] = (
274-
instance.user_name,
275-
signed.dumps(instance, compress=True,
276-
extra_key=settings.COMMENTS_XTD_SALT))
277-
278272
subject = _("new comment posted")
279273
text_message_template = loader.get_template(
280274
"django_comments_xtd/email_followup_comment.txt")

0 commit comments

Comments
 (0)