From 6c1565b0875aede2d6ff0685209e200f8f5dd572 Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Fri, 13 Oct 2023 06:41:08 -0700 Subject: [PATCH] notifs feeds: add id --- pages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pages.py b/pages.py index 0d043d9..d6ea118 100644 --- a/pages.py +++ b/pages.py @@ -207,6 +207,7 @@ def serve_feed(*, objects, format, title, as_snippets=False, quiet=False): if as_snippets: activities = [{ 'objectType': 'note', + 'id': obj.key.id(), 'content': f'{obj.actor_link(image=False)} {obj.phrase} {obj.content}', 'content_is_html': True, 'updated': obj.updated.isoformat(),