We have to store feeds in the gcontact table ...

This commit is contained in:
Michael Vogel 2016-04-20 08:27:11 +02:00 committed by Roland Haeder
parent 74883adfd1
commit 49ca25f81a
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
1 changed files with 2 additions and 2 deletions

View File

@ -1408,7 +1408,7 @@ function get_gcontact_id($contact) {
$gcontact_id = 0;
if (in_array($contact["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
if (in_array($contact["network"], array(NETWORK_PHANTOM))) {
logger("Invalid network for contact url ".$contact["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
return false;
}
@ -1600,7 +1600,7 @@ function update_gcontact($contact) {
function update_gcontact_from_probe($url) {
$data = probe_url($url);
if (in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) {
if (in_array($data["network"], array(NETWORK_PHANTOM))) {
logger("Invalid network for contact url ".$data["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
return;
}