mirror of
https://github.com/friendica/friendica
synced 2024-11-10 11:42:54 +00:00
Support feeds without XML headers
This commit is contained in:
parent
d10c8ddf57
commit
1c31dca5d6
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ function onepoll_run(&$argv, &$argc){
|
|||
return;
|
||||
}
|
||||
|
||||
if(! strstr($handshake_xml,'<?xml')) {
|
||||
if(! strstr($handshake_xml,'<')) {
|
||||
logger('poller: response from ' . $url . ' did not contain XML.');
|
||||
|
||||
mark_for_death($contact);
|
||||
|
@ -535,7 +535,7 @@ function onepoll_run(&$argv, &$argc){
|
|||
|
||||
if($xml) {
|
||||
logger('poller: received xml : ' . $xml, LOGGER_DATA);
|
||||
if((! strstr($xml,'<?xml')) && (! strstr($xml,'<rss'))) {
|
||||
if(! strstr($xml,'<')) {
|
||||
logger('poller: post_handshake: response from ' . $url . ' did not contain XML.');
|
||||
$r = q("UPDATE `contact` SET `last-update` = '%s' WHERE `id` = %d",
|
||||
dbesc(datetime_convert()),
|
||||
|
|
Loading…
Reference in a new issue