From 67e2e23f7e52b1f8939fdd86f7c1a54f8058c595 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sat, 29 Apr 2023 14:59:30 +0100 Subject: [PATCH] sameAs as an alternative to alsoKnownAs --- webapp_profile.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webapp_profile.py b/webapp_profile.py index af9b35f68..9f8eaaebe 100644 --- a/webapp_profile.py +++ b/webapp_profile.py @@ -315,6 +315,8 @@ def html_profile_after_search(recent_posts_cache: {}, max_recent_posts: int, also_known_as = None if profile_json.get('alsoKnownAs'): also_known_as = profile_json['alsoKnownAs'] + elif profile_json.get('sameAs'): + also_known_as = profile_json['sameAs'] joined_date = None if profile_json.get('published'):