diff --git a/starpunk/routes/public.py b/starpunk/routes/public.py index 3728713..e099d3b 100644 --- a/starpunk/routes/public.py +++ b/starpunk/routes/public.py @@ -71,7 +71,7 @@ def _get_cached_notes(): # Attach tags to each note (v1.3.1) tags = get_note_tags(note.id) - object.__setattr__(note, 'tags', tags) + object.__setattr__(note, '_cached_tags', tags) _feed_cache["notes"] = notes _feed_cache["timestamp"] = now