diff options
author | Friendika <info@friendika.com> | 2011-09-28 04:35:44 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-28 04:35:44 -0700 |
commit | a1786cbf61a3ea6ff15ebcc578e7ad9800814391 (patch) | |
tree | fcc79eeddafa8ef74746562ca63e58d23801fe10 | |
parent | d0f45bf28167ddb4c4d4361b44d75b19157fbffb (diff) | |
download | volse-hubzilla-a1786cbf61a3ea6ff15ebcc578e7ad9800814391.tar.gz volse-hubzilla-a1786cbf61a3ea6ff15ebcc578e7ad9800814391.tar.bz2 volse-hubzilla-a1786cbf61a3ea6ff15ebcc578e7ad9800814391.zip |
fixes for statusnet/identi.ca empty vcard page - which appears to be deprecated. Scrape the feed for everything we used to get from the vcard.
-rw-r--r-- | include/Scrape.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Scrape.php b/include/Scrape.php index 2af02fff5..642b8e624 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -533,7 +533,7 @@ function probe_url($url, $mode = PROBE_NORMAL) { if($twitter || ! $poll) $check_feed = true; - if((! isset($vcard)) || (! $profile)) + if((! isset($vcard)) || (! x($vcard,'fn')) || (! $profile)) $check_feed = true; if(($at_addr) && (! count($links))) $check_feed = false; |