if current_user.is_anonymous:
flash(_('Create an account to tailor this feed to your interests.'))
content_filters = {'-1': {'trump', 'elon', 'musk'}}
Some of the complaints about hardcoded values were fixed in the last commits, but the code is a spaghetti mess littered with ad-hoc hacks for random whims of the developers. This is bad software design and disrespectful to users imo, but to each their own.
I was curious so had a look around.
I assume it’s this https://codeberg.org/rimu/pyfedi/src/commit/cfc35b0e1b812d929d62aea87f47014f8ce845b4/app/main/routes.py#L131
if current_user.is_anonymous: flash(_('Create an account to tailor this feed to your interests.')) content_filters = {'-1': {'trump', 'elon', 'musk'}}Some of the complaints about hardcoded values were fixed in the last commits, but the code is a spaghetti mess littered with ad-hoc hacks for random whims of the developers. This is bad software design and disrespectful to users imo, but to each their own.