mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-02-03 00:31:25 -08:00
Backfill: set remote user's indexable status same on first fetch as later refresh
This commit is contained in:
parent
5ecb66988b
commit
0d30b152cc
1 changed files with 1 additions and 1 deletions
|
@ -698,7 +698,7 @@ def actor_json_to_model(activity_json, address, server):
|
|||
email=f"{address}@{server}",
|
||||
about_html=parse_summary(activity_json),
|
||||
matrix_user_id=activity_json['matrixUserId'] if 'matrixUserId' in activity_json else '',
|
||||
indexable=activity_json['indexable'] if 'indexable' in activity_json else False,
|
||||
indexable=activity_json['indexable'] if 'indexable' in activity_json else True,
|
||||
searchable=activity_json['discoverable'] if 'discoverable' in activity_json else True,
|
||||
created=activity_json['published'] if 'published' in activity_json else utcnow(),
|
||||
ap_id=f"{address.lower()}@{server.lower()}",
|
||||
|
|
Loading…
Add table
Reference in a new issue