From 222ace377009d196e3ea0292b1ac332ef8e88d23 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 3 Apr 2016 20:55:38 -0700 Subject: For GNU-social discovery, use the URI in the feed (author.uri) rather than try to pick out which of the aliases in webfinger are likely to be the right one. If we get it wrong, our communications with them will be discarded and there is no rhyme or reason to the logic about which representation is likely to be the one true account URI. It appears to vary with the clean_url setting of the site and this info isn't available to us except with a sequence of expensive probes and testing various ways of re-writing URLs to see if we get a response. --- include/network.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/network.php') diff --git a/include/network.php b/include/network.php index 7c7da8727..c9ae8b283 100644 --- a/include/network.php +++ b/include/network.php @@ -1265,6 +1265,12 @@ function discover_by_webbie($webbie) { if($feed_meta['author']['author_photo']) $avatar = $feed_meta['author']['author_photo']; } + + // for GNU-social over-ride any url aliases we may have picked up in webfinger + // The author.uri element in the feed is likely to be more accurate + + if($gnusoc && $feed_meta['author']['author_uri']) + $location = $feed_meta['author']['author_uri']; } } else { -- cgit v1.2.3