Fix lookup for custom actor types
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
# microblog.pub
|
||||
|
||||
A self-hosted, single-user, ActivityPub powered microblog.
|
||||
|
||||
[](https://builds.sr.ht/~tsileo/microblog.pub?)
|
||||
[](https://git.sr.ht/~tsileo/microblog.pub/tree/v2/item/LICENSE)
|
||||
|
||||
|
@@ -111,6 +111,7 @@ async def render_template(
|
||||
"following_count": await db_session.scalar(
|
||||
select(func.count(models.Following.id))
|
||||
),
|
||||
"actor_types": ap.ACTOR_TYPES,
|
||||
**template_args,
|
||||
},
|
||||
)
|
||||
|
@@ -11,7 +11,7 @@
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{% if ap_object and ap_object.ap_type == "Person" %}
|
||||
{% if ap_object and ap_object.ap_type in actor_types %}
|
||||
{{ utils.display_actor(ap_object, actors_metadata) }}
|
||||
{% elif ap_object %}
|
||||
{{ utils.display_object_expanded(ap_object) }}
|
||||
|
Reference in New Issue
Block a user